vuito
Version:
Simple, lightweight, isomorphic, and template-based validation library.
10 lines (9 loc) • 509 B
TypeScript
export { default as maxLength } from './validators/maxLength';
export { default as minLength } from './validators/minLength';
export { default as maxValue } from './validators/maxValue';
export { default as minValue } from './validators/minValue';
export { default as onlyText } from './validators/onlyText';
export { default as required } from './validators/required';
export { default as regex } from './validators/regex';
export { templateify } from './template';
export type { VTemplate } from './types';