Fix iterable SetConstructor interface (#29777)

This commit is contained in:
tkondo
2019-04-23 13:27:30 -07:00
committed by Ryan Cavanaugh
parent 760393f893
commit 84b8ab816c
+1 -1
View File
@@ -177,7 +177,7 @@ interface ReadonlySet<T> {
}
interface SetConstructor {
new <T>(iterable: Iterable<T>): Set<T>;
new <T>(iterable?: Iterable<T> | null): Set<T>;
}
interface WeakSet<T extends object> { }