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

40 lines
847 B
TypeScript

//// [internalAliasClassInsideTopLevelModuleWithoutExport.ts]
export module x {
export class c {
foo(a: number) {
return a;
}
}
}
import xc = x.c;
export var cProp = new xc();
var cReturnVal = cProp.foo(10);
//// [internalAliasClassInsideTopLevelModuleWithoutExport.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 = {}));
var xc = x.c;
exports.cProp = new xc();
var cReturnVal = exports.cProp.foo(10);
//// [internalAliasClassInsideTopLevelModuleWithoutExport.d.ts]
export declare module x {
class c {
foo(a: number): number;
}
}
import xc = x.c;
export declare var cProp: xc;