( tableId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 556 | ); |
| 557 | |
| 558 | export const useRowCount = ( |
| 559 | tableId: MaybeAccessor<Id>, |
| 560 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 561 | ): Accessor<number> => |
| 562 | useListenable( |
| 563 | ROW_COUNT, |
| 564 | useStoreOrStoreById(storeOrStoreId), |
| 565 | ReturnType.Number, |
| 566 | [tableId], |
| 567 | ); |
| 568 | |
| 569 | export const useRowIds = ( |
| 570 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…