jz-tool-lib
Version:
项目常用公共方法集合
17 lines (16 loc) • 628 B
TypeScript
/**
* @description 手机号码校验 11位,必须以1开头
*/
export declare const testTelephone: (value: string) => boolean;
/**
* @description 身份号码校验 18位,前17位必须为数字,最后一位可以是数字或字母X
*/
export declare const testIdentification: (value: string) => boolean;
/**
* @description 密码校验 8-16位,必须包含大小写字母、数字、特殊字符
*/
export declare const testPassword: (value: string) => boolean;
/**
* @description 金额校验 1-9开头,0-9结尾,0-9中间最多两位小数
*/
export declare const testMoney: (value: string) => boolean;