16 lines
378 B
TypeScript
16 lines
378 B
TypeScript
import { ValidationMode } from './types';
|
|
export declare const EVENTS: {
|
|
BLUR: string;
|
|
CHANGE: string;
|
|
};
|
|
export declare const VALIDATION_MODE: ValidationMode;
|
|
export declare const INPUT_VALIDATION_RULES: {
|
|
max: string;
|
|
min: string;
|
|
maxLength: string;
|
|
minLength: string;
|
|
pattern: string;
|
|
required: string;
|
|
validate: string;
|
|
};
|