Deno.NetworkInterfaceInfo
The information for a network interface returned from a call to
Deno.networkInterfaces
.
interface NetworkInterfaceInfo {
address: string;
cidr: string;
family: "IPv4" | "IPv6";
mac: string;
name: string;
netmask: string;
scopeid: number | null;
}