feat(Guild): Add max_video_channel_users

This commit is contained in:
hocsinhgioitoan 2022-08-08 22:08:24 +07:00
parent 47104f8118
commit bf73ac4b3c
2 changed files with 11 additions and 0 deletions

View File

@ -362,6 +362,16 @@ class Guild extends AnonymousGuild {
this.maximumPresences ??= null;
}
if ('max_video_channel_users' in data) {
/**
* The maximum amount of users allowed in a video channel.
* @type {?number}
*/
this.maxVideoChannelUsers = data.max_video_channel_users;
} else {
this.maxVideoChannelUsers ??= null;
}
if ('approximate_member_count' in data) {
/**
* The approximate amount of members the guild has

1
typings/index.d.ts vendored
View File

@ -1203,6 +1203,7 @@ export class Guild extends AnonymousGuild {
public large: boolean;
public maximumMembers: number | null;
public maximumPresences: number | null;
public maxVideoChannelUsers: number | null;
public readonly me: GuildMember | null;
public memberCount: number;
public members: GuildMemberManager;