TypeScript/tests/cases/conformance/jsdoc/declarations/jsDeclarationsModuleReferenceHasEmit.ts
2020-03-03 10:55:21 -08:00

19 lines
253 B
TypeScript

// @allowJs: true
// @checkJs: true
// @target: es5
// @outDir: ./out
// @declaration: true
// @filename: index.js
/**
* @module A
*/
class A {}
/**
* Target element
* @type {module:A}
*/
export let el = null;
export default A;