UNPKG

overmind-forms

Version:
9 lines (8 loc) 271 B
export interface FormField { value: string; isPristine: boolean; isValid: boolean; showError: boolean; } export declare type IsValid = (value: string) => boolean; export declare const formField: (value?: string, isValid?: boolean | IsValid) => FormField;