17 lines
307 B
TypeScript
17 lines
307 B
TypeScript
import { MetaIPType } from '../meta';
|
|
|
|
export interface Interface {
|
|
iface: string;
|
|
friendlyName: string;
|
|
mac: string;
|
|
addresses: InterfaceAddress[] | null;
|
|
}
|
|
|
|
export interface InterfaceAddress {
|
|
metaIPType: MetaIPType;
|
|
address: string;
|
|
netmask: string;
|
|
network: string;
|
|
gateway: string;
|
|
}
|