n8n-nodes-netdevices
Version:
n8n node to interact with network devices (Cisco, MikroTik, Arista, Extreme Networks, Dell, Juniper, HP, Aruba, Ubiquiti, Palo Alto, Fortinet - ISP, data center, campus, and edge)
20 lines • 482 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoEnable = NoEnable;
function NoEnable(Base) {
return class NoEnable extends Base {
constructor(...args) {
super(...args);
}
async checkEnableMode() {
return false;
}
async enable() {
return '';
}
async exitEnableMode() {
return '';
}
};
}
//# sourceMappingURL=no-enable.js.map