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
|
//// [internalImportInstantiatedModuleMergedWithClassNotReferencingInstance.ts]
class A {
aProp: string;
}
module A {
export interface X { s: string }
export var a = 10;
}
module B {
var A = 1;
import Y = A;
}
//// [internalImportInstantiatedModuleMergedWithClassNotReferencingInstance.js]
var A = /** @class */ (function () {
function A() {
}
return A;
}());
(function (A) {
A.a = 10;
})(A || (A = {}));
var B;
(function (B) {
var A = 1;
})(B || (B = {}));
|