Skip to content

Commit 6cd2dc9

Browse files
committed
Accept baseline from test added since merged PR was made
1 parent 155610e commit 6cd2dc9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/baselines/reference/jsdocTypeReferenceToImportOfFunctionExpression.types

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ const MW = require("./MW");
99

1010
/** @class */
1111
module.exports = function MC() {
12-
>module.exports = function MC() { /** @type {any} */ var x = {} return new MW(x);} : { (): import("tests/cases/conformance/jsdoc/MW"); new (): MC; }
13-
>module.exports : { (): import("tests/cases/conformance/jsdoc/MW"); new (): MC; }
14-
>module : { "\"tests/cases/conformance/jsdoc/MC\"": { (): import("tests/cases/conformance/jsdoc/MW"); new (): MC; }; }
15-
>exports : { (): import("tests/cases/conformance/jsdoc/MW"); new (): MC; }
12+
>module.exports = function MC() { /** @type {any} */ var x = {} return new MW(x);} : { (): MW; new (): MC; }
13+
>module.exports : { (): MW; new (): MC; }
14+
>module : { "\"tests/cases/conformance/jsdoc/MC\"": { (): MW; new (): MC; }; }
15+
>exports : { (): MW; new (): MC; }
1616
>function MC() { /** @type {any} */ var x = {} return new MW(x);} : typeof MC
1717
>MC : typeof MC
1818

0 commit comments

Comments
 (0)