TypeScript/tests/baselines/reference/exportAssignmentWithExports.js

19 lines
307 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [exportAssignmentWithExports.ts]
export class C { }
class D { }
export = D;
//// [exportAssignmentWithExports.js]
var C = (function () {
function C() {
}
return C;
})();
exports.C = C;
var D = (function () {
function D() {
}
return D;
})();
module.exports = D;