fix(types/voice): member field in VoiceState is nullable

This commit is contained in:
rigormorrtiss
2021-05-27 13:49:01 +04:00
parent 17f16ee91f
commit 047e6467ff

View File

@@ -9,7 +9,7 @@ export interface VoiceState {
/** The user id this voice state is for */
userId: string;
/** The guild member this voice state is for */
member?: GuildMemberWithUser;
member?: GuildMemberWithUser | null;
/** The session id for this voice state */
sessionId: string;
/** Whether this user is deafened by the server */