mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 03:23:29 +01:00
fix(types): fixed CachedManager constructor arguments in type (#9761)
This commit is contained in:
2
typings/index.d.ts
vendored
2
typings/index.d.ts
vendored
@@ -3224,7 +3224,7 @@ export abstract class DataManager<K, Holds, R> extends BaseManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export abstract class CachedManager<K, Holds, R> extends DataManager<K, Holds, R> {
|
export abstract class CachedManager<K, Holds, R> extends DataManager<K, Holds, R> {
|
||||||
protected constructor(client: Client, holds: Constructable<Holds>);
|
protected constructor(client: Client, holds: Constructable<Holds>, iterable?: Iterable<Holds>);
|
||||||
private readonly _cache: Collection<K, Holds>;
|
private readonly _cache: Collection<K, Holds>;
|
||||||
private _add(data: unknown, cache?: boolean, { id, extras }?: { id: K; extras: unknown[] }): Holds;
|
private _add(data: unknown, cache?: boolean, { id, extras }?: { id: K; extras: unknown[] }): Holds;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user