import { Zone } from './Zone'; import { Port } from './Port'; export interface Host { id?: number; ipv4?: string; ipv6?: string; mac: number; os: string; discoveredDate?: Date; zone?: Zone; target?: boolean; ports: Map | null; portList: Port[] | null; }