blowfish/node_modules/@headlessui/react/dist/utils/form.d.ts

5 lines
251 B
TypeScript
Raw Normal View History

2023-01-29 22:30:24 +00:00
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 {};