From a07c3c2f943e944ba288082fa215ddb7b577dd9c Mon Sep 17 00:00:00 2001 From: Quentin Date: Sun, 12 Apr 2020 13:54:34 -0500 Subject: [PATCH] fix(BaseManager): remove declaration of remove method (#4069) The BaseManager#remove method doesn't exist, but was in the BaseManager typings. --- typings/index.d.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 0d43e8708..17998c83c 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1819,7 +1819,6 @@ declare module 'discord.js' { public cacheType: Collection; public readonly client: Client; public add(data: any, cache?: boolean, { id, extras }?: { id: K; extras: any[] }): Holds; - public remove(key: K): void; public resolve(resolvable: R): Holds | null; public resolveID(resolvable: R): K | null; }