10 lines
192 B
Plaintext
10 lines
192 B
Plaintext
import { __decorate } from "tslib"
|
|
|
|
class A {
|
|
method1(skipped: string, @Arg() b: string) {}
|
|
method2(@Arg() a: string, @Arg() b: string) {}
|
|
}
|
|
|
|
class B {
|
|
constructor(@Arg() a: string) {}
|
|
} |