@undermuz/use-form
Version:
React library for build forms
8 lines (5 loc) • 355 B
TypeScript
import { IStore, DispatchFunction, IAction } from '../../utils/useReducer.js';
import { IUseIsFormSettings } from '../helpers.js';
import { IFormState } from '../reducer.js';
declare const createSend: (settings: IUseIsFormSettings) => (store: IStore<IFormState>) => (next: DispatchFunction) => (action: IAction) => Promise<void>;
export { createSend };