(
public transient: TransientService,
@Inject(SOME_TOKEN) public token: string,
)
| 21 | @Injectable() |
| 22 | class RegularService { |
| 23 | constructor( |
| 24 | public transient: TransientService, |
| 25 | @Inject(SOME_TOKEN) public token: string, |
| 26 | ) {} |
| 27 | } |
| 28 | |
| 29 | @Injectable() |