fix(BaseManager): remove declaration of remove method (#4069)

The BaseManager#remove method doesn't exist, but was in the BaseManager typings.
This commit is contained in:
Quentin
2020-04-12 13:54:34 -05:00
committed by GitHub
parent 828640ca26
commit a07c3c2f94

1
typings/index.d.ts vendored
View File

@@ -1819,7 +1819,6 @@ declare module 'discord.js' {
public cacheType: Collection<K, Holds>;
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;
}