This commit is contained in:
zhengbli
2016-09-06 13:04:29 -07:00
parent faaf219a43
commit 11e9f50722

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;
}