We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a643e5 commit 21736a1Copy full SHA for 21736a1
1 file changed
src/lib/es2015.collection.d.ts
@@ -16,7 +16,6 @@ interface MapConstructor {
16
declare var Map: MapConstructor;
17
18
interface WeakMap<K, V> {
19
- clear(): void;
20
delete(key: K): boolean;
21
get(key: K): V | undefined;
22
has(key: K): boolean;
@@ -48,7 +47,6 @@ declare var Set: SetConstructor;
48
47
49
interface WeakSet<T> {
50
add(value: T): this;
51
52
delete(value: T): boolean;
53
has(value: T): boolean;
54
}
0 commit comments