Skip to content

Commit

Permalink
types(ThreadEditOptions): Add appliedTags (#9022)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiralite committed Jan 10, 2023
1 parent 35f6dad commit 6854df4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/structures/ThreadChannel.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
* <info>Can only be edited on `GUILD_PRIVATE_THREAD`</info>
*/
Expand Down
1 change: 1 addition & 0 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6108,6 +6108,7 @@ export interface ThreadEditData {
locked?: boolean;
invitable?: boolean;
threadName?: string;
appliedTags?: Snowflake[];
flags?: ChannelFlagsResolvable;
}

Expand Down

0 comments on commit 6854df4

Please sign in to comment.