Fix test
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import { __decorate } from "tslib"
|
||||
import { __decorate } from "tslib";
|
||||
|
||||
class A {
|
||||
prop: string;
|
||||
@ -9,13 +9,18 @@ class A {
|
||||
}
|
||||
|
||||
__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 };
|
Reference in New Issue
Block a user