(
@Inject(INQUIRER) private inquirer: any,
@Inject(SOME_TOKEN) public token: string,
)
| 11 | public context: string; |
| 12 | |
| 13 | constructor( |
| 14 | @Inject(INQUIRER) private inquirer: any, |
| 15 | @Inject(SOME_TOKEN) public token: string, |
| 16 | ) { |
| 17 | this.context = inquirer.constructor.name; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | @Injectable() |