( tableId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 567 | ); |
| 568 | |
| 569 | export const useRowIds = ( |
| 570 | tableId: MaybeAccessor<Id>, |
| 571 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 572 | ): Accessor<Ids> => |
| 573 | useListenable( |
| 574 | ROW_IDS, |
| 575 | useStoreOrStoreById(storeOrStoreId), |
| 576 | ReturnType.Array, |
| 577 | [tableId], |
| 578 | ); |
| 579 | |
| 580 | export const useSortedRowIds = ( |
| 581 | tableIdOrArgs: MaybeAccessor<Id> | SortedRowIdsArgs, |
searching dependent graphs…