From 7ff3d528d942a0daa990194915ff8328dec99149 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Thu, 13 Apr 2023 16:55:48 +0100 Subject: [PATCH] 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> --- packages/discord.js/typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index fb06027ce..c6882f802 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -6230,7 +6230,7 @@ export type CategoryChildChannel = Exclude; -export type GuildTextBasedChannel = Exclude, ForumChannel>; +export type GuildTextBasedChannel = Extract; export type TextChannelResolvable = Snowflake | TextChannel;