| 20 | export type DayOfWeekField = (number | string)[]; |
| 21 | |
| 22 | export interface NthWeekday { |
| 23 | /** The weekday, 0-6 (Sunday = 0). */ |
| 24 | weekday: number; |
| 25 | /** Which occurrence in the month, 1-5. */ |
| 26 | nth: number; |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Parses a `<weekday>L` token into its 0-6 weekday number (Sunday=0), or |
nothing calls this directly
no outgoing calls
no test coverage detected