diff --git a/tslib.d.ts b/tslib.d.ts index caed5d7..fbfded6 100644 --- a/tslib.d.ts +++ b/tslib.d.ts @@ -32,5 +32,5 @@ export declare function __asyncValues(o: any): any; export declare function __makeTemplateObject(cooked: string[], raw: string[]): TemplateStringsArray; export declare function __importStar(mod: T): T; export declare function __importDefault(mod: T): T | { default: T }; -export declare function __classPrivateFieldGet(receiver: T, privateMap: WeakMap): V; -export declare function __classPrivateFieldSet(receiver: T, privateMap: WeakMap, value: V): V; +export declare function __classPrivateFieldGet(receiver: T, privateMap: { has(o: T): boolean, get(o: T): V | undefined }): V; +export declare function __classPrivateFieldSet(receiver: T, privateMap: { has(o: T): boolean, set(o: T, value: V): any }, value: V): V;