mirror of
https://github.com/danbulant/discord.js
synced 2026-06-10 02:02:40 +00:00
docs/typings: Rename LURKABLE to PUBLIC and update GuildFeatures type (#3484)
* docs: Rename LURKABLE to PUBLIC * typings: Update GuildFeatures type
This commit is contained in:
parent
d280d1b03f
commit
ea8b4e7355
2 changed files with 12 additions and 7 deletions
|
|
@ -154,7 +154,7 @@ class Guild extends Base {
|
||||||
* * DISCOVERABLE
|
* * DISCOVERABLE
|
||||||
* * FEATURABLE
|
* * FEATURABLE
|
||||||
* * INVITE_SPLASH
|
* * INVITE_SPLASH
|
||||||
* * LURKABLE
|
* * PUBLIC
|
||||||
* * NEWS
|
* * NEWS
|
||||||
* * PARTNERED
|
* * PARTNERED
|
||||||
* * VANITY_URL
|
* * VANITY_URL
|
||||||
|
|
|
||||||
17
typings/index.d.ts
vendored
17
typings/index.d.ts
vendored
|
|
@ -2235,13 +2235,18 @@ declare module 'discord.js' {
|
||||||
channel: GuildChannelResolvable | null;
|
channel: GuildChannelResolvable | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
type GuildFeatures = 'INVITE_SPLASH'
|
type GuildFeatures = 'ANIMATED_ICON'
|
||||||
| 'MORE_EMOJI'
|
| 'BANNER'
|
||||||
| 'VERIFIED'
|
| 'COMMERCE'
|
||||||
| 'VIP_REGIONS'
|
|
||||||
| 'VANITY_URL'
|
|
||||||
| 'DISCOVERABLE'
|
| 'DISCOVERABLE'
|
||||||
| 'FEATURABLE';
|
| 'FEATURABLE'
|
||||||
|
| 'INVITE_SPLASH'
|
||||||
|
| 'PUBLIC'
|
||||||
|
| 'NEWS'
|
||||||
|
| 'PARTNERED'
|
||||||
|
| 'VANITY_URL'
|
||||||
|
| 'VERIFIED'
|
||||||
|
| 'VIP_REGIONS';
|
||||||
|
|
||||||
interface GuildMemberEditData {
|
interface GuildMemberEditData {
|
||||||
nick?: string;
|
nick?: string;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue