/** * 正则相关工具 * * @filename packages/utils/src/utils/regexpUtils.ts * @author Mr Prince * @date 2023-06-09 15:20:53 */ /** * 判断是否是邮箱 */ export declare const isEmail: (email: string) => boolean; /** * 判断是否是IP地址 */ export declare const isIPAddress: (ip: string) => boolean; /** * 判断是否是身份证 */ export declare const isID: (id: string) => boolean;