(tableIdOrArgs, cellIdOrStoreOrStoreId, descending, offset, limit, storeOrStoreId)
| 497 | tableId |
| 498 | ]); |
| 499 | var useSortedRowIds = (tableIdOrArgs, cellIdOrStoreOrStoreId, descending, offset, limit, storeOrStoreId) => useSortedRowIdsImpl( |
| 500 | ...isObject(tableIdOrArgs) ? [ |
| 501 | tableIdOrArgs.tableId, |
| 502 | tableIdOrArgs.cellId, |
| 503 | tableIdOrArgs.descending ?? false, |
| 504 | tableIdOrArgs.offset ?? 0, |
| 505 | tableIdOrArgs.limit, |
| 506 | cellIdOrStoreOrStoreId |
| 507 | ] : [ |
| 508 | tableIdOrArgs, |
| 509 | cellIdOrStoreOrStoreId, |
| 510 | descending, |
| 511 | offset, |
| 512 | limit, |
| 513 | storeOrStoreId |
| 514 | ] |
| 515 | ); |
| 516 | var useHasRow = (tableId, rowId, storeOrStoreId) => useListenable(ROW, useStoreOrStoreById(storeOrStoreId), 6, [ |
| 517 | tableId, |
| 518 | rowId |
no test coverage detected
searching dependent graphs…