UNPKG

tav-ui

Version:
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;