| 84 | } |
| 85 | |
| 86 | interface Result { |
| 87 | weekdays: Set<Weekday>; |
| 88 | repeats: undefined | 'weekly'; |
| 89 | startTime: { hours: number, minutes?: number }; |
| 90 | endTime: { hours: number, minutes?: number }; |
| 91 | } |
| 92 | |
| 93 | function* NaturalDateParser(): ParseGenerator<Result> { |
| 94 | yield whitespaceOptional; |
nothing calls this directly
no outgoing calls
no test coverage detected