feat(SystemChannelFlags): add new flag (#6870)

Co-authored-by: Shubham Parihar <shubhamparihar391@gmail.com>
This commit is contained in:
Almeida
2021-11-06 00:00:18 +00:00
committed by GitHub
parent c297829d54
commit 49e3ce2133
2 changed files with 4 additions and 1 deletions

3
typings/index.d.ts vendored
View File

@@ -5013,7 +5013,8 @@ export type StickerType = keyof typeof StickerTypes;
export type SystemChannelFlagsString =
| 'SUPPRESS_JOIN_NOTIFICATIONS'
| 'SUPPRESS_PREMIUM_SUBSCRIPTIONS'
| 'SUPPRESS_GUILD_REMINDER_NOTIFICATIONS';
| 'SUPPRESS_GUILD_REMINDER_NOTIFICATIONS'
| 'SUPPRESS_JOIN_NOTIFICATION_REPLIES';
export type SystemChannelFlagsResolvable = BitFieldResolvable<SystemChannelFlagsString, number>;