mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 09:20:08 +00:00
fix(types): joinedAt is nullable (#932)
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user