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

40 lines
811 B
TypeScript

//// [internalAliasFunctionInsideLocalModuleWithExport.ts]
export module a {
export function foo(x: number) {
return x;
}
}
export module c {
export import b = a.foo;
export var bVal = b(10);
export var bVal2 = b;
}
//// [internalAliasFunctionInsideLocalModuleWithExport.js]
var a;
(function (a) {
function foo(x) {
return x;
}
a.foo = foo;
})(a = exports.a || (exports.a = {}));
var c;
(function (c) {
c.b = a.foo;
c.bVal = c.b(10);
c.bVal2 = c.b;
})(c = exports.c || (exports.c = {}));
//// [internalAliasFunctionInsideLocalModuleWithExport.d.ts]
export declare module a {
function foo(x: number): number;
}
export declare module c {
export import b = a.foo;
var bVal: number;
var bVal2: typeof b;
}