You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
259 B

export interface DiscordUser {
id: string;
username: string;
avatar: string;
discriminator: string;
public_flags: number;
flags: number;
locale: string;
mfa_enabled: boolean;
premium_type: number;
avatarURL: string;
}