UNPKG

pterowrap

Version:

A node.js wrapper for Pterodactyl API

15 lines (14 loc) 580 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const AllocationManager_1 = __importDefault(require("./AllocationManager")); class NetworkManager { constructor(client, _parentServer) { this.client = client; this._parentServer = _parentServer; this.allocations = new AllocationManager_1.default(this.client, this._parentServer); } } exports.default = NetworkManager;