From e87e4a6f0e23aad52744c0254ba224c6518d85a6 Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Wed, 5 Jun 2019 15:46:11 -0400 Subject: [PATCH] typings(GuildChannelStore): add CategoryChannel as possible return value (#3326) --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index c56bfb0e..7288c015 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1440,7 +1440,7 @@ declare module 'discord.js' { export class GuildChannelStore extends DataStore { constructor(guild: Guild, iterable?: Iterable); - public create(name: string, options?: GuildCreateChannelOptions): Promise; + public create(name: string, options?: GuildCreateChannelOptions): Promise; } // Hacky workaround because changing the signature of an overriden method errors