From 33a7a5cbdc00d2a5034dc1ec91fec5da7042f9d0 Mon Sep 17 00:00:00 2001 From: Rodry <38259440+ImRodry@users.noreply.github.com> Date: Sun, 17 Jul 2022 20:12:22 +0100 Subject: [PATCH] types(CategoryChannelChildManager): fix Holds type (#8288) --- packages/discord.js/typings/index.d.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index 83a412a29..e91195471 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -3284,11 +3284,7 @@ export class BaseGuildEmojiManager extends CachedManager { +export class CategoryChannelChildManager extends DataManager { private constructor(channel: CategoryChannel); public channel: CategoryChannel; @@ -5436,7 +5432,7 @@ export type VoiceBasedChannel = Extract; export type GuildBasedChannel = Extract; -export type NonCategoryGuildBasedChannel = Exclude; +export type CategoryChildChannel = Exclude, CategoryChannel>; export type NonThreadGuildBasedChannel = Exclude;