vue-supervalidator
Version:
🚀 The most powerful Vue 3 form validation library with 226+ built-in rules
7 lines (6 loc) • 333 B
TypeScript
export declare const defaultMessages: Record<string, string>;
declare const safeValue: (value: any) => any;
declare const isEmpty: (value: any) => boolean;
declare const getFieldValue: (formData: any, field: string) => any;
export { safeValue, isEmpty, getFieldValue };
export { builtInRules, validateRule } from './rules-extended';