react-hook-form-6
Version:
Latest version 6 of react-hook-form
19 lines (18 loc) • 486 B
TypeScript
import { ValidationMode } from './types';
export declare const EVENTS: {
BLUR: string;
CHANGE: string;
INPUT: string;
};
export declare const VALIDATION_MODE: ValidationMode;
export declare const SELECT = "select";
export declare const UNDEFINED = "undefined";
export declare const INPUT_VALIDATION_RULES: {
max: string;
min: string;
maxLength: string;
minLength: string;
pattern: string;
required: string;
validate: string;
};