We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8170fa commit 64cb578Copy full SHA for 64cb578
tests/baselines/reference/unusedVariablesWithUnderscoreInForOfLoop.types
@@ -12,9 +12,9 @@ function f() {
12
13
console.log(b);
14
>console.log(b) : void
15
->console.log : (message?: any, ...optionalParams: any[]) => void
+>console.log : (...data: any[]) => void
16
>console : Console
17
->log : (message?: any, ...optionalParams: any[]) => void
+>log : (...data: any[]) => void
18
>b : string | number
19
}
20
@@ -28,9 +28,9 @@ function f() {
28
29
console.log(a);
30
>console.log(a) : void
31
32
33
34
>a : string | number
35
36
0 commit comments