( tableId: Id, storeOrStoreId?: StoreOrStoreId, )
| 736 | ); |
| 737 | |
| 738 | export const useRowIds: typeof useRowIdsDecl = ( |
| 739 | tableId: Id, |
| 740 | storeOrStoreId?: StoreOrStoreId, |
| 741 | ): Ids => |
| 742 | useListenable( |
| 743 | ROW_IDS, |
| 744 | useStoreOrStoreById(storeOrStoreId), |
| 745 | ReturnType.Array, |
| 746 | [tableId], |
| 747 | ); |
| 748 | |
| 749 | export const useSortedRowIds: typeof useSortedRowIdsDecl = ( |
| 750 | tableIdOrArgs: Id | SortedRowIdsArgs, |
searching dependent graphs…