| 180 | export type { RunCoordinator, SkipReason } from './coordinator/run-coordinator'; |
| 181 | |
| 182 | export interface NodeCron { |
| 183 | schedule: typeof schedule; |
| 184 | createTask: typeof createTask; |
| 185 | validate: typeof validate; |
| 186 | validateDetailed: typeof validateDetailed; |
| 187 | parse: typeof parse; |
| 188 | getTasks: typeof getTasks; |
| 189 | getTask: typeof getTask; |
| 190 | setLogger: typeof setLogger; |
| 191 | setRunCoordinator: typeof setRunCoordinator; |
| 192 | } |
| 193 | |
| 194 | export const nodeCron: NodeCron = { |
| 195 | schedule, |
nothing calls this directly
no outgoing calls
no test coverage detected