( tableId: Id, cellId: Id, storeOrStoreId?: StoreOrStoreId, )
| 713 | ); |
| 714 | |
| 715 | export const useHasTableCell: typeof useHasTableCellDecl = ( |
| 716 | tableId: Id, |
| 717 | cellId: Id, |
| 718 | storeOrStoreId?: StoreOrStoreId, |
| 719 | ): boolean => |
| 720 | useListenable( |
| 721 | TABLE + CELL, |
| 722 | useStoreOrStoreById(storeOrStoreId), |
| 723 | ReturnType.Boolean, |
| 724 | [tableId, cellId], |
| 725 | ); |
| 726 | |
| 727 | export const useRowCount: typeof useRowCountDecl = ( |
| 728 | tableId: Id, |
searching dependent graphs…