Skip to content

Commit

Permalink
Port #10728: Fix #6500
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengbli committed Sep 6, 2016
1 parent faaf219 commit 11e9f50
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/lib/es2015.collection.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit 11e9f50

Please sign in to comment.