pterowrap
Version:
A node.js wrapper for Pterodactyl API
17 lines (16 loc) • 496 B
TypeScript
import ClientInstance from "../../../instance/ClientInstance";
import Server from "../Server";
export default class Variable {
private _client;
_parentServer: Server;
name: string;
description: string;
env_variable: string;
default_value: string;
server_value: string;
is_editable: boolean;
rules: string;
raw: any;
constructor(_client: ClientInstance, data: any, _parentServer: Server);
update(value: string): Promise<Variable>;
}