@k8ts/instruments
Version:
A collection of utilities and core components for k8ts.
23 lines • 538 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Subnet4 = exports.Ip4 = void 0;
const ip_address_1 = require("ip-address");
class Ip4 {
text;
_addr4;
constructor(text) {
this.text = text;
this._addr4 = new ip_address_1.Address4(text);
}
}
exports.Ip4 = Ip4;
class Subnet4 {
text;
_addr4;
constructor(text) {
this.text = text;
this._addr4 = new ip_address_1.Address4(text);
}
}
exports.Subnet4 = Subnet4;
//# sourceMappingURL=index.js.map