fix(types): joinedAt is nullable (#932)

This commit is contained in:
rigormorrtiss
2021-05-14 22:43:00 +04:00
committed by GitHub
parent 306e409118
commit d13bbc1d14

View File

@@ -11,7 +11,7 @@ export interface GuildMemberUpdate {
/** Nickname of the user in the guild */
nick?: string | null;
/** When the user joined the guild */
joinedAt: string;
joinedAt: string | null;
/** When the user starting boosting the guild */
premiumSince?: string | null;
/** Whether the user has not yet passed the guild's Membership Screening requirements */