25 lines
389 B
TypeScript
25 lines
389 B
TypeScript
export {}
|
|
|
|
declare global {
|
|
interface IUser {
|
|
_id: string,
|
|
username: string,
|
|
discord: {
|
|
id: string,
|
|
username: string,
|
|
avatarHash: string
|
|
},
|
|
minecraft?: {
|
|
uuid: string,
|
|
username: string
|
|
},
|
|
teamInvites: string[],
|
|
role: {
|
|
admin: boolean,
|
|
moderator: boolean,
|
|
},
|
|
teamId: string,
|
|
accessToken?: string
|
|
}
|
|
}
|