feat(Threads): max autoArchiveDuration option (#6304)

Co-authored-by: Noel <buechler.noel@outlook.com>
This commit is contained in:
Papageorgiadis Savvas
2021-08-07 23:19:29 +03:00
committed by GitHub
parent d87299ba20
commit 394d48649f
3 changed files with 21 additions and 3 deletions

2
typings/index.d.ts vendored
View File

@@ -4430,7 +4430,7 @@ export type TextBasedChannelTypes = TextBasedChannels['type'];
export type TextChannelResolvable = Snowflake | TextChannel;
export type ThreadAutoArchiveDuration = 60 | 1440 | 4320 | 10080;
export type ThreadAutoArchiveDuration = 60 | 1440 | 4320 | 10080 | 'MAX';
export type ThreadChannelResolvable = ThreadChannel | Snowflake;