From 142db0ed8cfc2c82cc87913d3d3d04fca9a05242 Mon Sep 17 00:00:00 2001 From: Jaw0r3k Date: Sat, 12 Aug 2023 14:01:03 +0200 Subject: [PATCH] fix(types): fixed CachedManager constructor arguments in type (#9761) --- 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 e55449b0f..c18c0ef20 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -3224,7 +3224,7 @@ export abstract class DataManager extends BaseManager { } export abstract class CachedManager extends DataManager { - protected constructor(client: Client, holds: Constructable); + protected constructor(client: Client, holds: Constructable, iterable?: Iterable); private readonly _cache: Collection; private _add(data: unknown, cache?: boolean, { id, extras }?: { id: K; extras: unknown[] }): Holds; }