(state: MultiSelectState, totalChoices: number)
| 2646 | } |
| 2647 | |
| 2648 | const processMultiSelectCursorDown = (state: MultiSelectState, totalChoices: number) => { |
| 2649 | const newIndex = (state.index + 1) % totalChoices |
| 2650 | return Effect.succeed(Action.NextFrame({ state: { ...state, index: newIndex } })) |
| 2651 | } |
| 2652 | |
| 2653 | const processSpace = <A>( |
| 2654 | state: MultiSelectState, |
no test coverage detected