(state: State)
| 146 | } |
| 147 | |
| 148 | function processUp(state: State) { |
| 149 | state.dateParts[state.cursor].increment() |
| 150 | return Action.NextFrame({ |
| 151 | state: { ...state, typed: "" } |
| 152 | }) |
| 153 | } |
| 154 | |
| 155 | function processDown(state: State) { |
| 156 | state.dateParts[state.cursor].decrement() |
no test coverage detected
searching dependent graphs…