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