(@extensions() public readonly getJobs: Getter<CronJob[]>)
| 30 | @lifeCycleObserver('cronJob') |
| 31 | export class CronComponent implements Component, LifeCycleObserver { |
| 32 | constructor(@extensions() public readonly getJobs: Getter<CronJob[]>) {} |
| 33 | |
| 34 | async start() { |
| 35 | const jobs = await this.getJobs(); |
nothing calls this directly
no test coverage detected