mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 11:33:30 +01:00
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:
1
typings/index.d.ts
vendored
1
typings/index.d.ts
vendored
@@ -1819,7 +1819,6 @@ declare module 'discord.js' {
|
|||||||
public cacheType: Collection<K, Holds>;
|
public cacheType: Collection<K, Holds>;
|
||||||
public readonly client: Client;
|
public readonly client: Client;
|
||||||
public add(data: any, cache?: boolean, { id, extras }?: { id: K; extras: any[] }): Holds;
|
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 resolve(resolvable: R): Holds | null;
|
||||||
public resolveID(resolvable: R): K | null;
|
public resolveID(resolvable: R): K | null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user