TypeScript/tests/cases/compiler/jsdocImportTypeResolution.ts

14 lines
254 B
TypeScript
Raw Normal View History

2018-11-11 18:47:02 +01:00
// @allowJs: true
// @noEmit: true
// @checkJs: true
// @filename: module.js
export class MyClass {
}
// @filename: usage.js
/**
* @typedef {Object} options
* @property {import("./module").MyClass} option
*/
/** @type {options} */
let v;