UNPKG

@joker.front/ui

Version:

Joker UI组件库是一个精心设计和编码的项目,旨在为开发者提供一系列高效、易用且美观的用户界面组件

12 lines (11 loc) 612 B
import { CtrlItem } from "./form-ctrl"; export declare const validateGlobalFunction: { isRequired(message?: string): (value?: string, ctrl?: CtrlItem) => any; isInt: (message?: string) => (value: any) => any; isNumber: (message?: string) => (value: any) => any; isPhone: (message?: string) => (value: any) => any; isEmail: (message?: string) => (value: any) => any; isMatched: (pattern: string, message?: string) => (value: any) => any; isLengthInRange: (min?: number, max?: number, message?: string) => (value: any) => string; }; export declare function registerValidateAll(): void;