mirror of
https://github.com/danbulant/discord.js
synced 2026-05-31 21:31:29 +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
|
||||
* * FEATURABLE
|
||||
* * INVITE_SPLASH
|
||||
* * LURKABLE
|
||||
* * PUBLIC
|
||||
* * NEWS
|
||||
* * PARTNERED
|
||||
* * 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;
|
||||
}
|
||||
|
||||
type GuildFeatures = 'INVITE_SPLASH'
|
||||
| 'MORE_EMOJI'
|
||||
| 'VERIFIED'
|
||||
| 'VIP_REGIONS'
|
||||
| 'VANITY_URL'
|
||||
type GuildFeatures = 'ANIMATED_ICON'
|
||||
| 'BANNER'
|
||||
| 'COMMERCE'
|
||||
| 'DISCOVERABLE'
|
||||
| 'FEATURABLE';
|
||||
| 'FEATURABLE'
|
||||
| 'INVITE_SPLASH'
|
||||
| 'PUBLIC'
|
||||
| 'NEWS'
|
||||
| 'PARTNERED'
|
||||
| 'VANITY_URL'
|
||||
| 'VERIFIED'
|
||||
| 'VIP_REGIONS';
|
||||
|
||||
interface GuildMemberEditData {
|
||||
nick?: string;
|
||||
|
|
|
|||
Loading…
Reference in a new issue