mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 20:43:30 +01:00
types(ThreadEditOptions): Add appliedTags (#9022)
This commit is contained in:
@@ -323,6 +323,7 @@ class ThreadChannel extends Channel {
|
|||||||
* @property {number} [rateLimitPerUser] The rate limit per user (slowmode) for the thread in seconds
|
* @property {number} [rateLimitPerUser] The rate limit per user (slowmode) for the thread in seconds
|
||||||
* @property {boolean} [locked] Whether the thread is locked
|
* @property {boolean} [locked] Whether the thread is locked
|
||||||
* @property {boolean} [invitable] Whether non-moderators can add other non-moderators to a thread
|
* @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
|
* @property {ChannelFlagsResolvable} [flags] The flags to set on the channel
|
||||||
* <info>Can only be edited on `GUILD_PRIVATE_THREAD`</info>
|
* <info>Can only be edited on `GUILD_PRIVATE_THREAD`</info>
|
||||||
*/
|
*/
|
||||||
|
|||||||
1
typings/index.d.ts
vendored
1
typings/index.d.ts
vendored
@@ -6108,6 +6108,7 @@ export interface ThreadEditData {
|
|||||||
locked?: boolean;
|
locked?: boolean;
|
||||||
invitable?: boolean;
|
invitable?: boolean;
|
||||||
threadName?: string;
|
threadName?: string;
|
||||||
|
appliedTags?: Snowflake[];
|
||||||
flags?: ChannelFlagsResolvable;
|
flags?: ChannelFlagsResolvable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user