pterowrap
Version:
A node.js wrapper for Pterodactyl API
10 lines (9 loc) • 368 B
TypeScript
import ClientInstance from "../../../instance/ClientInstance";
import Server from "../../../structures/client/Server";
import AllocationManager from "./AllocationManager";
export default class NetworkManager {
private client;
_parentServer: Server;
allocations: AllocationManager;
constructor(client: ClientInstance, _parentServer: Server);
}