fix(APIUser): premium_type is optional (#19)

This commit is contained in:
Sugden
2020-09-19 12:49:39 +01:00
committed by GitHub
parent 10fdeba128
commit 8cf1ba3f4f

View File

@@ -19,7 +19,7 @@ export interface APIUser {
verified?: boolean;
email?: string | null;
flags?: UserFlags;
premium_type: UserPremiumType;
premium_type?: UserPremiumType;
public_flags?: UserFlags;
}