Skip to content

Commit 64cb578

Browse files
authored
update baseline (microsoft#37692)
1 parent d8170fa commit 64cb578

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/baselines/reference/unusedVariablesWithUnderscoreInForOfLoop.types

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ function f() {
1212

1313
console.log(b);
1414
>console.log(b) : void
15-
>console.log : (message?: any, ...optionalParams: any[]) => void
15+
>console.log : (...data: any[]) => void
1616
>console : Console
17-
>log : (message?: any, ...optionalParams: any[]) => void
17+
>log : (...data: any[]) => void
1818
>b : string | number
1919
}
2020

@@ -28,9 +28,9 @@ function f() {
2828

2929
console.log(a);
3030
>console.log(a) : void
31-
>console.log : (message?: any, ...optionalParams: any[]) => void
31+
>console.log : (...data: any[]) => void
3232
>console : Console
33-
>log : (message?: any, ...optionalParams: any[]) => void
33+
>log : (...data: any[]) => void
3434
>a : string | number
3535
}
3636

0 commit comments

Comments
 (0)