()
| 56 | return buildCronDeletePrompt(isDurableCronEnabled()) |
| 57 | }, |
| 58 | getPath() { |
| 59 | return getCronFilePath() |
| 60 | }, |
| 61 | async validateInput(input): Promise<ValidationResult> { |
| 62 | const tasks = await listAllCronTasks() |
| 63 | const task = tasks.find(t => t.id === input.id) |
nothing calls this directly
no test coverage detected