| 7 | import { WindowsSystemScheduler } from './WindowsSystemScheduler' |
| 8 | |
| 9 | interface PlatformSystemScheduler { |
| 10 | install(job: CronJob): Promise<void> |
| 11 | remove(jobId: string): Promise<void> |
| 12 | listSystemTasks(): Promise<SystemScheduledTask[]> |
| 13 | deleteSystemTask(id: string): Promise<void> |
| 14 | } |
| 15 | |
| 16 | export class CronSystemScheduler { |
| 17 | private unixScheduler: UnixSystemScheduler |
no outgoing calls
no test coverage detected