swc/crates/swc_ecma_parser/tests/tsc/jsDeclarationsExportAssignedConstructorFunctionWithSub.ts

17 lines
363 B
TypeScript

// @allowJs: true
// @checkJs: true
// @target: es5
// @outDir: ./out
// @declaration: true
// @filename: jsDeclarationsExportAssignedConstructorFunctionWithSub.js
/**
* @param {number} p
*/
module.exports = function (p) {
this.t = 12 + p;
}
module.exports.Sub = function() {
this.instance = new module.exports(10);
}
module.exports.Sub.prototype = { }