(selectedKeys: Selection)
| 192 | let {cursor, getKey} = opts; |
| 193 | return { |
| 194 | setSelectedKeys(selectedKeys: Selection) { |
| 195 | dispatch(state => ({ |
| 196 | ...state, |
| 197 | selectedKeys |
| 198 | })); |
| 199 | }, |
| 200 | addKeysToSelection(selectedKeys: Selection) { |
| 201 | dispatch(state => { |
| 202 | if (state.selectedKeys === 'all') { |
no outgoing calls