We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cffa1dd commit 0a94f77Copy full SHA for 0a94f77
1 file changed
tests/baselines/reference/iterableArrayPattern14.types
@@ -41,13 +41,13 @@ class FooIterator {
41
}
42
43
function fun(...[a, ...b]) { }
44
->fun : (...[a, ...b]: Iterable<any>) => void
+>fun : (__0_0: any, __0_1?: any) => void
45
>a : any
46
>b : any[]
47
48
fun(new FooIterator);
49
>fun(new FooIterator) : void
50
51
>new FooIterator : FooIterator
52
>FooIterator : typeof FooIterator
53
0 commit comments