From e562564123912f09725a6e03ecf4ba44d85de35a Mon Sep 17 00:00:00 2001 From: Alex <41408947+S0ftwareUpd8@users.noreply.github.com> Date: Sun, 28 Jul 2019 06:24:27 -0700 Subject: [PATCH] docs(Guild): add missing features (#3406) * Update Guild.js * Update Guild.js * style(Guild): remove trailing space * typings(Guild): add new features --- src/structures/Guild.js | 2 ++ typings/index.d.ts | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 90728501f..21be50d14 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -159,6 +159,8 @@ class Guild extends Base { * * VERIFIED * * VIP_REGIONS * * VANITY_URL + * * DISCOVERABLE + * * FEATURABLE * @typedef {string} Features */ diff --git a/typings/index.d.ts b/typings/index.d.ts index 76c8f4e89..ad9b150e2 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -2223,7 +2223,9 @@ declare module 'discord.js' { | 'MORE_EMOJI' | 'VERIFIED' | 'VIP_REGIONS' - | 'VANITY_URL'; + | 'VANITY_URL' + | 'DISCOVERABLE' + | 'FEATURABLE'; interface GuildMemberEditData { nick?: string;