pterowrap
Version:
A node.js wrapper for Pterodactyl API
18 lines (17 loc) • 518 B
TypeScript
import ClientInstance from "../../../instance/ClientInstance";
import Server from "../Server";
export default class Backup {
private _client;
_parentServer: Server;
uuid: string;
name: string;
ignored_files: string[];
sha256_hash: string;
bytes: number;
created_at: string;
completed_at: string;
raw: any;
constructor(_client: ClientInstance, data: any, _parentServer: Server);
retrieveDownloadLink(): Promise<string>;
delete(): Promise<unknown>;
}