fix: minor forums cleanup (#9033)

* docs(GuildChannelResolvable): remove extra `ForumChannel`

* docs: replace `GuildForumThreadChannel`

* docs: `Channel` correct reference

* refactor: move `threadName` to the right method
This commit is contained in:
Jiralite
2023-02-17 22:02:38 +00:00
committed by GitHub
parent 86329ad66f
commit eed293f893
5 changed files with 5 additions and 6 deletions

2
typings/index.d.ts vendored
View File

@@ -6353,7 +6353,6 @@ export interface ThreadEditData {
rateLimitPerUser?: number;
locked?: boolean;
invitable?: boolean;
threadName?: string;
appliedTags?: Snowflake[];
flags?: ChannelFlagsResolvable;
}
@@ -6434,6 +6433,7 @@ export interface WebhookMessageOptions extends Omit<MessageOptions, 'reply' | 's
username?: string;
avatarURL?: string;
threadId?: Snowflake;
threadName?: string;
}
export type WebhookType = keyof typeof WebhookTypes;