diff --git a/src/structures/ThreadChannel.js b/src/structures/ThreadChannel.js index 7e41cece5b9c..53c56a9a7042 100644 --- a/src/structures/ThreadChannel.js +++ b/src/structures/ThreadChannel.js @@ -323,6 +323,7 @@ class ThreadChannel extends Channel { * @property {number} [rateLimitPerUser] The rate limit per user (slowmode) for the thread in seconds * @property {boolean} [locked] Whether the thread is locked * @property {boolean} [invitable] Whether non-moderators can add other non-moderators to a thread + * @property {Snowflake[]} [appliedTags] The tags to apply to the thread * @property {ChannelFlagsResolvable} [flags] The flags to set on the channel * Can only be edited on `GUILD_PRIVATE_THREAD` */ diff --git a/typings/index.d.ts b/typings/index.d.ts index 70d52588861d..13d7404e3e4b 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -6108,6 +6108,7 @@ export interface ThreadEditData { locked?: boolean; invitable?: boolean; threadName?: string; + appliedTags?: Snowflake[]; flags?: ChannelFlagsResolvable; }