n8n-nodes-my-local-ip
Version:
My Local Ip
22 lines • 577 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Interface = exports.MyLocalIpResult = void 0;
class MyLocalIpResult {
constructor() {
this.interfaces = [];
}
}
exports.MyLocalIpResult = MyLocalIpResult;
class Interface {
constructor() {
this.hostname = null;
this.family = null;
this.interface = null;
this.address = null;
this.mac = null;
this.subnet = null;
this.internal = null;
}
}
exports.Interface = Interface;
//# sourceMappingURL=MyLocalIpResult.js.map