Skip to content

Commit

Permalink
Merge pull request #94 from microsoft/remove-weakmap
Browse files Browse the repository at this point in the history
Remove reference to WeakMap from tslib.d.ts
  • Loading branch information
DanielRosenwasser committed Feb 26, 2020
2 parents 364f0ec + 418ee9c commit 5d26e24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tslib.d.ts
Expand Up @@ -32,5 +32,5 @@ export declare function __asyncValues(o: any): any;
export declare function __makeTemplateObject(cooked: string[], raw: string[]): TemplateStringsArray;
export declare function __importStar<T>(mod: T): T;
export declare function __importDefault<T>(mod: T): T | { default: T };
export declare function __classPrivateFieldGet<T extends object, V>(receiver: T, privateMap: WeakMap<T, V>): V;
export declare function __classPrivateFieldSet<T extends object, V>(receiver: T, privateMap: WeakMap<T, V>, value: V): V;
export declare function __classPrivateFieldGet<T extends object, V>(receiver: T, privateMap: { has(o: T): boolean, get(o: T): V | undefined }): V;
export declare function __classPrivateFieldSet<T extends object, V>(receiver: T, privateMap: { has(o: T): boolean, set(o: T, value: V): any }, value: V): V;

0 comments on commit 5d26e24

Please sign in to comment.