( tableId: Id, storeOrStoreId?: StoreOrStoreId, )
| 725 | ); |
| 726 | |
| 727 | export const useRowCount: typeof useRowCountDecl = ( |
| 728 | tableId: Id, |
| 729 | storeOrStoreId?: StoreOrStoreId, |
| 730 | ): number => |
| 731 | useListenable( |
| 732 | ROW_COUNT, |
| 733 | useStoreOrStoreById(storeOrStoreId), |
| 734 | ReturnType.Number, |
| 735 | [tableId], |
| 736 | ); |
| 737 | |
| 738 | export const useRowIds: typeof useRowIdsDecl = ( |
| 739 | tableId: Id, |
searching dependent graphs…