From 89d9b0f498b797ab15d7d1452ef0e25a9085fd59 Mon Sep 17 00:00:00 2001 From: Crawl Date: Thu, 29 Aug 2019 20:16:38 +0200 Subject: [PATCH] fix(typings): partially revert #3448 --- 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 519acadf9..0e73a24fc 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1715,7 +1715,7 @@ declare module 'discord.js' { public client: Client; public holds: VConstructor; public add(data: any, cache?: boolean, { id, extras }?: { id: K, extras: any[] }): V; - public remove(key: K): boolean; + public remove(key: K): void; public resolve(resolvable: R): V | null; public resolveID(resolvable: R): K | null; }