pterowrap
Version:
A node.js wrapper for Pterodactyl API
11 lines (10 loc) • 381 B
TypeScript
import * as Types from "../utils/Types";
export default abstract class BaseInstance {
url: string | undefined;
private api_key;
private instance_type;
private headers;
constructor(url: string | undefined, api_key: string | undefined, instance_type: Types.instanceType);
call(options: Types.callOptions): Promise<any>;
private formatOptions;
}