TypeScript/tests/baselines/reference/internalAliasClassInsideTopLevelModuleWithExport.js

41 lines
921 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]
"use strict";
exports.__esModule = true;
var x;
(function (x) {
var c = /** @class */ (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;