Skip to content

Commit 6854df4

Browse files
authoredJan 10, 2023
types(ThreadEditOptions): Add appliedTags (#9022)
1 parent 35f6dad commit 6854df4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
 

‎src/structures/ThreadChannel.js

+1
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ class ThreadChannel extends Channel {
323323
* @property {number} [rateLimitPerUser] The rate limit per user (slowmode) for the thread in seconds
324324
* @property {boolean} [locked] Whether the thread is locked
325325
* @property {boolean} [invitable] Whether non-moderators can add other non-moderators to a thread
326+
* @property {Snowflake[]} [appliedTags] The tags to apply to the thread
326327
* @property {ChannelFlagsResolvable} [flags] The flags to set on the channel
327328
* <info>Can only be edited on `GUILD_PRIVATE_THREAD`</info>
328329
*/

‎typings/index.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6108,6 +6108,7 @@ export interface ThreadEditData {
61086108
locked?: boolean;
61096109
invitable?: boolean;
61106110
threadName?: string;
6111+
appliedTags?: Snowflake[];
61116112
flags?: ChannelFlagsResolvable;
61126113
}
61136114

0 commit comments

Comments
 (0)
Please sign in to comment.