mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Fix iterable SetConstructor interface (#29777)
This commit is contained in:
Vendored
+1
-1
@@ -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> { }
|
||||
|
||||
Reference in New Issue
Block a user