From b4d651055aa682d0edff3c48b5a91fd5a9aa6f8f Mon Sep 17 00:00:00 2001 From: Souji Date: Tue, 11 Aug 2020 22:59:44 +0200 Subject: [PATCH] fix(BaseManager): properly type valueOf (#4594) --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index c8d6cb233..965d0dd8b 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1856,6 +1856,7 @@ declare module 'discord.js' { public add(data: any, cache?: boolean, { id, extras }?: { id: K; extras: any[] }): Holds; public resolve(resolvable: R): Holds | null; public resolveID(resolvable: R): K | null; + public valueOf(): Collection; } export class GuildChannelManager extends BaseManager {