refactor(ThreadChannel): Remove MAX helper from threads (#7846)

This commit is contained in:
Jiralite
2022-05-12 09:29:21 +01:00
committed by GitHub
parent 19eaed6390
commit dfd9eb20b2
6 changed files with 10 additions and 34 deletions

View File

@@ -797,9 +797,8 @@ class Message extends Base {
* archived. This can be:
* * `60` (1 hour)
* * `1440` (1 day)
* * `4320` (3 days) <warn>This is only available when the guild has the `THREE_DAY_THREAD_ARCHIVE` feature.</warn>
* * `10080` (7 days) <warn>This is only available when the guild has the `SEVEN_DAY_THREAD_ARCHIVE` feature.</warn>
* * `'MAX'` Based on the guild's features
* * `4320` (3 days)
* * `10080` (7 days)
* @typedef {number|string} ThreadAutoArchiveDuration
*/