TypeScript/tests/baselines/reference/jsdocVariableDeclarationWithTypeAnnotation.types

9 lines
160 B
Plaintext

=== tests/cases/conformance/jsdoc/foo.js ===
/** @type {boolean} */
var /** @type {string} */ x,
>x : string
/** @type {number} */ y;
>y : number