types(GuildTextBasedChannel): Remove unnecessary exclusion of forum channels (#9326)

types(GuildTextBasedChannel): remove exclusion of forum channels

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Jiralite
2023-04-13 16:55:48 +01:00
committed by GitHub
parent 0b7f296b62
commit 7ff3d528d9

View File

@@ -6230,7 +6230,7 @@ export type CategoryChildChannel = Exclude<Extract<Channel, { parent: CategoryCh
export type NonThreadGuildBasedChannel = Exclude<GuildBasedChannel, AnyThreadChannel>;
export type GuildTextBasedChannel = Exclude<Extract<GuildBasedChannel, TextBasedChannel>, ForumChannel>;
export type GuildTextBasedChannel = Extract<GuildBasedChannel, TextBasedChannel>;
export type TextChannelResolvable = Snowflake | TextChannel;