ip.d.ts 208 B

12345678
  1. export declare const ip: {
  2. address(): string;
  3. isLoopback(addr: string): boolean;
  4. loopback(family: IpFamily): string;
  5. };
  6. type IpFamily = 'ipv4' | 'ipv6';
  7. export {};
  8. //# sourceMappingURL=ip.d.ts.map