UNPKG

@cblink/finches-ui

Version:

A Component Library for Vue 3

9 lines (8 loc) 266 B
export interface FormContextProps { resetAction: () => Promise<void>; submitAction: () => Promise<void>; } export declare function createFormContext(context: FormContextProps): { state: any; }; export declare function useFormContext(): FormContextProps;