17 lines
307 B
TypeScript
Raw Normal View History

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