UNPKG

pmcf

Version:

Poor mans configuration management

15 lines (14 loc) 459 B
/** * */ export class NetworkAddress { constructor(networkInterface: any, address: any, subnet: any); /** @type {Subnet} */ subnet: Subnet; /** @type {NetworkInterface} */ networkInterface: NetworkInterface; /** @type {string|Uint8Array|Uint16Array} */ address: string | Uint8Array | Uint16Array; get domainNames(): any; get family(): any; get cidrAddress(): any; toString(): string; } import { Subnet } from "./subnet.mjs";