File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -694,6 +694,7 @@ interface Map<K, V> {
694
694
}
695
695
696
696
interface MapConstructor {
697
+ new ( ) : Map < any , any > ;
697
698
new < K , V > ( ) : Map < K , V > ;
698
699
new < K , V > ( iterable : Iterable < [ K , V ] > ) : Map < K , V > ;
699
700
prototype : Map < any , any > ;
@@ -710,6 +711,7 @@ interface WeakMap<K, V> {
710
711
}
711
712
712
713
interface WeakMapConstructor {
714
+ new ( ) : WeakMap < any , any > ;
713
715
new < K , V > ( ) : WeakMap < K , V > ;
714
716
new < K , V > ( iterable : Iterable < [ K , V ] > ) : WeakMap < K , V > ;
715
717
prototype : WeakMap < any , any > ;
@@ -731,6 +733,7 @@ interface Set<T> {
731
733
}
732
734
733
735
interface SetConstructor {
736
+ new ( ) : Set < any > ;
734
737
new < T > ( ) : Set < T > ;
735
738
new < T > ( iterable : Iterable < T > ) : Set < T > ;
736
739
prototype : Set < any > ;
@@ -746,6 +749,7 @@ interface WeakSet<T> {
746
749
}
747
750
748
751
interface WeakSetConstructor {
752
+ new ( ) : WeakSet < any > ;
749
753
new < T > ( ) : WeakSet < T > ;
750
754
new < T > ( iterable : Iterable < T > ) : WeakSet < T > ;
751
755
prototype : WeakSet < any > ;
You can’t perform that action at this time.
0 commit comments