pterowrap
Version:
A node.js wrapper for Pterodactyl API
14 lines (13 loc) • 337 B
TypeScript
import ClientInstance from "../../instance/ClientInstance";
export default class User {
private _client;
id: number;
admin: boolean;
username: string;
email: string;
first_name: string;
last_name: string;
language: string;
raw: any;
constructor(_client: ClientInstance, data: any);
}