From 11e9f507225d9ba7edbb95d9ccac3680062d7b0c Mon Sep 17 00:00:00 2001 From: zhengbli Date: Tue, 6 Sep 2016 13:04:29 -0700 Subject: [PATCH] Port #10728: Fix #6500 --- src/lib/es2015.collection.d.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/es2015.collection.d.ts b/src/lib/es2015.collection.d.ts index a3207175c48e4..bde1c6d581123 100644 --- a/src/lib/es2015.collection.d.ts +++ b/src/lib/es2015.collection.d.ts @@ -16,7 +16,6 @@ interface MapConstructor { declare var Map: MapConstructor; interface WeakMap { - clear(): void; delete(key: K): boolean; get(key: K): V | undefined; has(key: K): boolean; @@ -48,7 +47,6 @@ declare var Set: SetConstructor; interface WeakSet { add(value: T): this; - clear(): void; delete(value: T): boolean; has(value: T): boolean; }