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
|
//// [index.js]
class A {
member = new Q();
}
class Q {
x = 42;
}
module.exports = class Q {
constructor() {
this.x = new A();
}
}
module.exports.Another = Q;
//// [index.js]
var A = /** @class */ (function () {
function A() {
this.member = new Q();
}
return A;
}());
var Q = /** @class */ (function () {
function Q() {
this.x = 42;
}
return Q;
}());
module.exports = /** @class */ (function () {
function Q() {
this.x = new A();
}
return Q;
}());
module.exports.Another = Q;
//// [index.d.ts]
export = Q;
declare class Q {
x: A;
}
declare namespace Q {
export { Q_1 as Another };
}
declare class A {
member: Q;
}
declare class Q_1 {
x: number;
}
|