From d37876cee2e1e91ea05c6362a73f2404be5e2f18 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Tue, 4 Apr 2023 13:00:11 +0100 Subject: [PATCH] types(GuildTextBasedChannel): remove exclusion of forum channels --- 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 fb06027cefd3..c6882f8020b4 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;