app/@overflow/model/net/nic.ts

17 lines
307 B
TypeScript
Raw Normal View History

2018-08-26 15:15:10 +00:00
import { MetaIPType } from '../meta';
export interface Interface {
iface: string;
2018-09-13 03:29:12 +00:00
friendlyName: string;
2018-08-26 15:15:10 +00:00
mac: string;
2018-08-27 01:41:27 +00:00
addresses: InterfaceAddress[] | null;
2018-08-26 15:15:10 +00:00
}
export interface InterfaceAddress {
metaIPType: MetaIPType;
address: string;
netmask: string;
network: string;
gateway: string;
}