UNPKG

@blueking/ediatable

Version:

蓝鲸 Ediatable

38 lines (37 loc) 809 B
/** * 以小写英文字符开头,且只能包含英文字母、数字、连字符- */ export declare const nameRegx: RegExp; /** * ipv4 正则 */ export declare const ipv4: RegExp; /** * ipv6 正则 */ export declare const ipv6: RegExp; /** * ip:port 正则 */ export declare const ipPort: RegExp; /** * 正整数 正则 */ export declare const integerRegx: RegExp; export declare const domainRegex: RegExp; /** * 域名:port 正则 */ export declare const domainPort: RegExp; /** * 管控区域:IP */ export declare const netIp: RegExp; /** * 数据库/表名称限制正则 */ export declare const dbRegex: RegExp; /** * 批量搜索分隔符,支持 中英竖线、中英逗号、中英分号、顿号、制表符、换行符、斜线 */ export declare const batchSplitRegex: RegExp;