TypeScript/tests/baselines/reference/declFileImportChainInExportAssignment.js
2015-03-23 16:16:29 -07:00

40 lines
687 B
TypeScript

//// [declFileImportChainInExportAssignment.ts]
module m {
export module c {
export class c {
}
}
}
import a = m.c;
import b = a;
export = b;
//// [declFileImportChainInExportAssignment.js]
var m;
(function (m) {
var c;
(function (c_1) {
var c = (function () {
function c() {
}
return c;
})();
c_1.c = c;
})(c = m.c || (m.c = {}));
})(m || (m = {}));
var a = m.c;
var b = a;
module.exports = b;
//// [declFileImportChainInExportAssignment.d.ts]
declare module m {
module c {
class c {
}
}
}
import a = m.c;
import b = a;
export = b;