Interface IInterface

interface IInterface {
    address: string;
    cidr: string;
    family: "IPv4" | "IPv6";
    internal: boolean;
    mac: string;
    netmask: string;
    scopeid?: number;
}

Properties

address: string
cidr: string
family: "IPv4" | "IPv6"
internal: boolean
mac: string
netmask: string
scopeid?: number

Generated using TypeDoc