Skip to content

Commit c25b02f

Browse files
authored
Accept changed baseline (#24222)
1 parent 3fc3df3 commit c25b02f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/baselines/reference/callbackCrossModule.types

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ function C() {
2424
=== tests/cases/conformance/jsdoc/use.js ===
2525
/** @param {import('./mod1').Con} k */
2626
function f(k) {
27-
>f : (k: (error: any) => any) => any
28-
>k : (error: any) => any
27+
>f : (k: import("tests/cases/conformance/jsdoc/mod1").Con) => any
28+
>k : import("tests/cases/conformance/jsdoc/mod1").Con
2929

3030
if (1 === 2 - 1) {
3131
>1 === 2 - 1 : boolean
@@ -38,7 +38,7 @@ function f(k) {
3838
}
3939
return k({ ok: true})
4040
>k({ ok: true}) : any
41-
>k : (error: any) => any
41+
>k : import("tests/cases/conformance/jsdoc/mod1").Con
4242
>{ ok: true} : { ok: boolean; }
4343
>ok : boolean
4444
>true : true

0 commit comments

Comments
 (0)