(sortDescriptor: SortDescriptor)
| 367 | dispatchFetch({type: 'loadingMore'}, load); |
| 368 | }, |
| 369 | sort(sortDescriptor: SortDescriptor) { |
| 370 | dispatchFetch( |
| 371 | {type: 'sorting', sortDescriptor}, |
| 372 | (sort || load) as AsyncListLoadFunction<T, C> |
| 373 | ); |
| 374 | }, |
| 375 | ...createListActions({...options, getKey, cursor: data.cursor}, fn => { |
| 376 | dispatch({type: 'update', updater: fn}); |
| 377 | }), |
nothing calls this directly
no test coverage detected