import type { AdapterStatus } from "./AdapterStatus.js"; export type NetworkAdapter = { name: string; description: string; status: AdapterStatus; dnsSuffix: string; type: string; ipv6: string | null; ipv4: string | null; gateway: string | null; mac: string; }; //# sourceMappingURL=NetworkAdapter.d.ts.map