From 1ca8d2c8e8d6f7a6529aaa637e01ac61fed5ce19 Mon Sep 17 00:00:00 2001 From: Advaith Date: Sun, 26 Sep 2021 12:33:25 -0700 Subject: [PATCH] types: add GuildEmojiManager to Caches (#6671) --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index 52d4804b5..4bf80bbf3 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -3188,6 +3188,7 @@ export type BufferResolvable = Buffer | string; export interface Caches { ApplicationCommandManager: [manager: typeof ApplicationCommandManager, holds: typeof ApplicationCommand]; BaseGuildEmojiManager: [manager: typeof BaseGuildEmojiManager, holds: typeof GuildEmoji]; + GuildEmojiManager: [manager: typeof GuildEmojiManager, holds: typeof GuildEmoji]; // TODO: ChannelManager: [manager: typeof ChannelManager, holds: typeof Channel]; // TODO: GuildChannelManager: [manager: typeof GuildChannelManager, holds: typeof GuildChannel]; // TODO: GuildManager: [manager: typeof GuildManager, holds: typeof Guild];