UNPKG
jspteroapi
Version:
latest (1.11.4)
1.11.4
1.11.3
1.11.2
1.11.1
1.11.0
1.10.1
1.10.0
A pterodactyl v1 api using undici
jspteroapi.linux123123.com
Linux123123/JSPteroAPI
jspteroapi
/
dist
/
client
/
interfaces
/
User.d.ts
15 lines
(14 loc)
•
286 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
@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
; }