(index: number)
| 37 | ]; |
| 38 | |
| 39 | function getJobColor(index: number): string { |
| 40 | return JOB_COLORS[index % JOB_COLORS.length]; |
| 41 | } |
| 42 | |
| 43 | function getScheduleExpr(schedule: string | Record<string, unknown>): string | null { |
| 44 | if (typeof schedule === "string") return schedule; |
no outgoing calls
no test coverage detected