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 15:55:48 +00:00
committed by GitHub
co-authored by kodiakhq[bot]
parent 0b7f296b62
commit 7ff3d528d9
+1 -1
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;