blowfish/node_modules/@headlessui/react/dist/utils/form.d.ts
2023-01-29 22:30:24 +00:00

4 lines
251 B
TypeScript

declare type Entries = [string, string][];
export declare function objectToFormEntries(source?: Record<string, any>, parentKey?: string | null, entries?: Entries): Entries;
export declare function attemptSubmit(element: HTMLElement): void;
export {};