UNPKG

182 BTypeScriptView Raw
1export declare type JSONIPAddressFormat = {
2 name: "ip";
3 variant: "v4" | "v6";
4};
5export declare function inferIpAddress(value: string): JSONIPAddressFormat | undefined;