1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
//// [es6ModuleInternalNamedImports2.ts]
export module M {
// variable
export var M_V = 0;
// interface
export interface M_I { }
//calss
export class M_C { }
// instantiated module
export module M_M { var x; }
// uninstantiated module
export module M_MU { }
// function
export function M_F() { }
// enum
export enum M_E { }
// type
export type M_T = number;
// alias
export import M_A = M_M;
}
export module M {
// Reexports
export {M_V as v};
export {M_I as i};
export {M_C as c};
export {M_M as m};
export {M_MU as mu};
export {M_F as f};
export {M_E as e};
export {M_A as a};
}
//// [es6ModuleInternalNamedImports2.js]
export var M;
(function (M) {
// variable
M.M_V = 0;
//calss
class M_C {
}
M.M_C = M_C;
// instantiated module
let M_M;
(function (M_M) {
var x;
})(M_M = M.M_M || (M.M_M = {}));
// function
function M_F() { }
M.M_F = M_F;
// enum
let M_E;
(function (M_E) {
})(M_E = M.M_E || (M.M_E = {}));
// alias
M.M_A = M_M;
})(M || (M = {}));
(function (M) {
})(M || (M = {}));
|