( tableId: Id, rowId: Id, storeOrStoreId?: StoreOrStoreId, )
| 804 | ]; |
| 805 | |
| 806 | export const useCellIds: typeof useCellIdsDecl = ( |
| 807 | tableId: Id, |
| 808 | rowId: Id, |
| 809 | storeOrStoreId?: StoreOrStoreId, |
| 810 | ): Ids => |
| 811 | useListenable( |
| 812 | CELL_IDS, |
| 813 | useStoreOrStoreById(storeOrStoreId), |
| 814 | ReturnType.Array, |
| 815 | [tableId, rowId], |
| 816 | ); |
| 817 | |
| 818 | export const useHasCell: typeof useHasCellDecl = ( |
| 819 | tableId: Id, |
searching dependent graphs…