Thanks to visit codestin.com Credit goes to github.com
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 3fc3df3 commit c25b02fCopy full SHA for c25b02f
tests/baselines/reference/callbackCrossModule.types
@@ -24,8 +24,8 @@ function C() {
24
=== tests/cases/conformance/jsdoc/use.js ===
25
/** @param {import('./mod1').Con} k */
26
function f(k) {
27
->f : (k: (error: any) => any) => any
28
->k : (error: any) => any
+>f : (k: import("tests/cases/conformance/jsdoc/mod1").Con) => any
+>k : import("tests/cases/conformance/jsdoc/mod1").Con
29
30
if (1 === 2 - 1) {
31
>1 === 2 - 1 : boolean
@@ -38,7 +38,7 @@ function f(k) {
38
}
39
return k({ ok: true})
40
>k({ ok: true}) : any
41
42
>{ ok: true} : { ok: boolean; }
43
>ok : boolean
44
>true : true
0 commit comments