UNPKG

react-100-form

Version:

Simple form utility made using react hooks

6 lines (5 loc) 256 B
import { TResponse, TValidate } from './type'; declare module 'react-100-form' { function useForm(initialValues: any, validate?: TValidate<any>): TResponse<any>; function useForm<S = any>(initialValues: S, validate?: TValidate<S>): TResponse<S>; }