1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 17:51:35 +02:00

fixed wrong type declaration in Gateway readyEvent

This commit is contained in:
xnacly 2021-08-29 16:55:46 +02:00
parent b4b8d1d8df
commit ca4f0e653c

View File

@ -35,11 +35,11 @@ export interface ReadyEventData {
user: PublicUser & {
mobile: boolean;
desktop: boolean;
email: string | null;
email: string | undefined;
flags: bigint;
mfa_enabled: boolean;
nsfw_allowed: boolean;
phone: string | null;
phone: string | undefined;
premium: boolean;
premium_type: number;
verified: boolean;