This commit is contained in:
proteriax
2021-07-22 14:35:29 -04:00
parent 21003af738
commit 5257dc7ed2
8 changed files with 46 additions and 28 deletions

View File

@ -3,13 +3,17 @@ import { __decorate } from "tslib";
class A {
method1(skipped: string, b: string) {}
method2(a: string, b: string) {}
}
_decorate([__param(1, Arg())], A.prototype, "method1", null);
_decorate([__param(0, Arg()), __param(1, Arg())], A.prototype, "method2", null);
let B = class B {
constructor(a: string) {}
};
B = _decorate([__param(0, Arg())], B);