UNPKG

quasar

Version:

Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time

25 lines (23 loc) 588 B
// Keep in sync with ui/src/utils/patterns.js export type EmbeddedValidationRule = | "date" | "time" | "fulltime" | "timeOrFulltime" | "email" | "hexColor" | "hexaColor" | "hexOrHexaColor" | "rgbColor" | "rgbaColor" | "rgbOrRgbaColor" | "hexOrRgbColor" | "hexaOrRgbaColor" | "anyColor"; type EmbeddedValidationRuleFn = (value: any) => boolean; export type ValidationRule<T = any> = | EmbeddedValidationRule | (( value: T, rules: Record<EmbeddedValidationRule, EmbeddedValidationRuleFn>, ) => boolean | string | Promise<boolean | string>);