feat: add GuildMember#pending prop (#269)

This commit is contained in:
TriForMine
2020-12-22 16:27:12 +04:00
committed by GitHub
parent f1d0ef2d35
commit f9114b98d0
+4
View File
@@ -28,6 +28,8 @@ export interface MemberCreatePayload {
deaf: boolean;
/** Whether the user is muted in voice channels */
mute: boolean;
/** Whether the user has passed the guild's Membership Screening requirements */
pending?: boolean;
}
export interface GuildMember {
@@ -43,4 +45,6 @@ export interface GuildMember {
deaf: boolean;
/** Whether the user is muted in voice channels */
mute: boolean;
/** Whether the user has passed the guild's Membership Screening requirements */
pending?: boolean;
}