harmony/src/types/userTypes.ts
Catry 599997414b Add Types and Finish Endpoints (TODO: ENDPOINT #1)
Co-Authored-By: yky4589 <8479056+yky4589@users.noreply.github.com>
Co-Authored-By: Choi Minseo <minseo0388@outlook.com>
Co-Authored-By: Aki <akiacode@users.noreply.github.com>
2020-10-22 15:10:51 +09:00

16 lines
299 B
TypeScript

interface User {
id: string
username: string
discriminator: string
avatar: string | undefined
bot?: boolean
system?: boolean
mfa_enabled?: boolean
locale?: string
verified?: boolean
email?: string | undefined
flags?: number
premium_type?: 0 | 1 | 2
public_flags?: number
}