Type alias NetworkAddress

NetworkAddress: {
    address: Host;
    family: "IPv4" | "IPv6";
    internal: boolean;
    netmask: Host;
} & ({
    family: "IPv4";
} | {
    family: "IPv6";
    scopeid: number;
})

Type declaration

  • address: Host
  • family: "IPv4" | "IPv6"
  • internal: boolean
  • netmask: Host

Generated using TypeDoc