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
|
//// [declFilePrivateStatic.ts]
class C {
private static x = 1;
static y = 1;
private static a() { }
static b() { }
private static get c() { return 1; }
static get d() { return 1; }
private static set e(v) { }
static set f(v) { }
}
//// [declFilePrivateStatic.js]
var C = /** @class */ (function () {
function C() {
}
C.a = function () { };
C.b = function () { };
Object.defineProperty(C, "c", {
get: function () { return 1; },
enumerable: true,
configurable: true
});
Object.defineProperty(C, "d", {
get: function () { return 1; },
enumerable: true,
configurable: true
});
Object.defineProperty(C, "e", {
set: function (v) { },
enumerable: true,
configurable: true
});
Object.defineProperty(C, "f", {
set: function (v) { },
enumerable: true,
configurable: true
});
C.x = 1;
C.y = 1;
return C;
}());
//// [declFilePrivateStatic.d.ts]
declare class C {
private static x;
static y: number;
private static a;
static b(): void;
private static readonly c;
static readonly d: number;
private static e;
static f: any;
}
|