Skip to content

Commit 0a94f77

Browse files
committed
Accept new baselines
1 parent cffa1dd commit 0a94f77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/baselines/reference/iterableArrayPattern14.types

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ class FooIterator {
4141
}
4242

4343
function fun(...[a, ...b]) { }
44-
>fun : (...[a, ...b]: Iterable<any>) => void
44+
>fun : (__0_0: any, __0_1?: any) => void
4545
>a : any
4646
>b : any[]
4747

4848
fun(new FooIterator);
4949
>fun(new FooIterator) : void
50-
>fun : (...[a, ...b]: Iterable<any>) => void
50+
>fun : (__0_0: any, __0_1?: any) => void
5151
>new FooIterator : FooIterator
5252
>FooIterator : typeof FooIterator
5353

0 commit comments

Comments
 (0)