Files
tsc-decorators/test/snapshots/properties/input.txt
2021-07-22 11:10:02 -04:00

12 lines
200 B
Plaintext

class A {
@dec prop: string
@dec @dec2 prop2: string
@dec static staticProp: number
@called() service: Service
ignored: boolean
}
@Service()
export class B {
@Service() remote!: Service
}