| 1 | export declare interface Day { |
| 2 | weekOrder?: number; |
| 3 | central?: boolean; |
| 4 | date: Date; |
| 5 | startOfWeek?: boolean; |
| 6 | selected?: boolean; |
| 7 | previousMonth?: boolean; |
| 8 | currentMonth?: boolean; |
| 9 | nextMonth?: boolean; |
| 10 | past?: boolean; |
| 11 | today?: boolean; |
| 12 | future?: boolean; |
| 13 | disabled?: boolean; |
| 14 | tabindex?: string; |
| 15 | ariaPressed?: string; |
| 16 | ariaCurrent?: string | undefined; |
| 17 | disabledInfo?: string | undefined; |
| 18 | } |
| 19 | |
| 20 | export declare interface Week { |
| 21 | days: Day[]; |
nothing calls this directly
no outgoing calls
no test coverage detected