Files
fitness_walk_nwnu/node_modules/licia/isIp.d.ts
T
2026-09-08 20:28:54 +08:00

8 lines
166 B
TypeScript

declare namespace isIp {
function v4(str: string): boolean;
function v6(str: string): boolean;
}
declare function isIp(str: string): boolean;
export = isIp;