Skip to content

Commit

Permalink
types(GuildTextBasedChannel): Remove unnecessary exclusion of forum c…
Browse files Browse the repository at this point in the history
…hannels (#9326)

types(GuildTextBasedChannel): remove exclusion of forum channels

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
Jiralite and kodiakhq[bot] committed Apr 13, 2023
1 parent 0b7f296 commit 7ff3d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/discord.js/typings/index.d.ts
Expand Up @@ -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;

Expand Down

0 comments on commit 7ff3d52

Please sign in to comment.