()
| 77 | return buildCronCreatePrompt(isDurableCronEnabled()) |
| 78 | }, |
| 79 | getPath() { |
| 80 | return getCronFilePath() |
| 81 | }, |
| 82 | async validateInput(input): Promise<ValidationResult> { |
| 83 | if (!parseCronExpression(input.cron)) { |
| 84 | return { |
nothing calls this directly
no test coverage detected