16 lines
315 B
TypeScript
Raw Normal View History

2018-09-17 23:19:16 +09:00
import { MetaIPType, MetaDiscovererType } from '../meta';
2018-09-04 01:12:10 +09:00
export interface Zone {
network?: string;
iface?: string;
metaIPType?: MetaIPType;
address?: string;
mac?: string;
2018-09-11 17:04:22 +09:00
meta?: Map<string, Map<string, string>>;
2018-09-17 23:19:16 +09:00
discoveredBy?: MetaDiscovererType[];
2018-09-04 01:12:10 +09:00
discoveredDate?: Date;
2018-09-12 20:18:38 +09:00
2018-09-12 20:42:24 +09:00
hostList?: any[];
2018-09-04 01:12:10 +09:00
}