TypeScript/tests/baselines/reference/checkJsdocTypeTagOnExportAssignment1.symbols

21 lines
451 B
Plaintext

=== tests/cases/compiler/checkJsdocTypeTagOnExportAssignment1.js ===
No type information for this code.=== tests/cases/compiler/a.js ===
/**
* @typedef {Object} Foo
* @property {boolean} a
* @property {boolean} b
*/
/** @type {Foo} */
export default { c: false };
>c : Symbol(c, Decl(a.js, 7, 16))
=== tests/cases/compiler/b.js ===
import a from "./a";
>a : Symbol(a, Decl(b.js, 0, 6))
a;
>a : Symbol(a, Decl(b.js, 0, 6))