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

40 lines
864 B
TypeScript

//// [internalAliasClassInsideTopLevelModuleWithExport.ts]
export module x {
export class c {
foo(a: number) {
return a;
}
}
}
export import xc = x.c;
export var cProp = new xc();
var cReturnVal = cProp.foo(10);
//// [internalAliasClassInsideTopLevelModuleWithExport.js]
var x;
(function (x) {
var c = (function () {
function c() {
}
c.prototype.foo = function (a) {
return a;
};
return c;
})();
x.c = c;
})(x = exports.x || (exports.x = {}));
exports.xc = x.c;
exports.cProp = new exports.xc();
var cReturnVal = exports.cProp.foo(10);
//// [internalAliasClassInsideTopLevelModuleWithExport.d.ts]
export declare module x {
class c {
foo(a: number): number;
}
}
export import xc = x.c;
export declare var cProp: xc;