Fix iterable SetConstructor interface (#29777)

This commit is contained in:
tkondo
2019-04-24 05:27:30 +09:00
committed by Ryan Cavanaugh
parent 760393f893
commit 84b8ab816c

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