This commit is contained in:
Zhengbo Li 2016-09-06 11:36:23 -07:00 committed by GitHub
parent 4a643e5356
commit 21736a1dbb

View file

@ -16,7 +16,6 @@ interface MapConstructor {
declare var Map: MapConstructor;
interface WeakMap<K, V> {
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<T> {
add(value: T): this;
clear(): void;
delete(value: T): boolean;
has(value: T): boolean;
}