UNPKG

router-toolkit

Version:

A npm module for managing routers and access points

16 lines (15 loc) 344 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Router { host; port; username; password; constructor(host, port, username, password) { this.host = host; this.port = port; this.username = username; this.password = password; } } exports.default = Router;