mirror of
https://github.com/danbulant/discord.js
synced 2026-07-08 04:31:05 +00:00
Webpack build for branch master: 2d8e26c24c
This commit is contained in:
parent
9b70a6d5f9
commit
b390ec90ed
1 changed files with 12 additions and 2 deletions
|
|
@ -5961,8 +5961,18 @@ class Guild extends Base {
|
||||||
this.large = Boolean('large' in data ? data.large : this.large);
|
this.large = Boolean('large' in data ? data.large : this.large);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An array of guild features
|
* An array of enabled guild features, here are the possible values:
|
||||||
* @type {string[]}
|
* * INVITE_SPLASH
|
||||||
|
* * MORE_EMOJI
|
||||||
|
* * VERIFIED
|
||||||
|
* * VIP_REGIONS
|
||||||
|
* * VANITY_URL
|
||||||
|
* @typedef {string} Features
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An array of guild features partnered guilds have enabled
|
||||||
|
* @type {Features[]}
|
||||||
*/
|
*/
|
||||||
this.features = data.features;
|
this.features = data.features;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue