TypeScript/tests/baselines/reference/internalAliasInitializedModuleInsideLocalModuleWithoutExport.js
2014-09-06 17:40:19 -07:00

45 lines
901 B
TypeScript

//// [internalAliasInitializedModuleInsideLocalModuleWithoutExport.ts]
export module a {
export module b {
export class c {
}
}
}
export module c {
import b = a.b;
export var x: b.c = new b.c();
}
//// [internalAliasInitializedModuleInsideLocalModuleWithoutExport.js]
var a;
(function (a) {
var b;
(function (b) {
var c = (function () {
function c() {
}
return c;
})();
b.c = c;
})(b = a.b || (a.b = {}));
})(a = exports.a || (exports.a = {}));
var c;
(function (c) {
var b = a.b;
c.x = new b.c();
})(c = exports.c || (exports.c = {}));
//// [internalAliasInitializedModuleInsideLocalModuleWithoutExport.d.ts]
export declare module a {
module b {
class c {
}
}
}
export declare module c {
import b = a.b;
var x: b.c;
}