Files
tsc-decorators/test/snapshots/properties/output.txt
proteriax 5257dc7ed2 Fix test
2021-07-22 14:35:29 -04:00

26 lines
502 B
Plaintext

import { __decorate } from "tslib";
class A {
prop: string;
prop2: string;
static staticProp: number;
service: Service;
ignored: boolean;
}
__decorate([dec], A.prototype, "prop", void 0);
__decorate([dec, dec2], A.prototype, "prop2", void 0);
__decorate([dec], A, "staticProp", void 0);
__decorate([called()], A.prototype, "service", void 0);
let B = class B {
remote: Service;
};
__decorate([Service()], B.prototype, "remote", void 0);
B = __decorate([Service()], B);
export { B };