UNPKG

jspteroapi

Version:

A pterodactyl v1 api using undici

15 lines (14 loc) 286 B
/** @module ClientUser */ export interface UserAttributes { id: number; admin: boolean; username: string; email: string; first_name: string; last_name: string; language: string; } export interface User { object: 'user'; attributes: UserAttributes; }