| 128 | ]; |
| 129 | |
| 130 | export interface CronFieldError { |
| 131 | /** The field name, or `'expression'` for whole-expression problems. */ |
| 132 | field: string; |
| 133 | value?: string; |
| 134 | message: string; |
| 135 | } |
| 136 | |
| 137 | export interface ParsedFields { |
| 138 | second: number[]; |
nothing calls this directly
no outgoing calls
no test coverage detected