( tableId: Id, rowId: Id, cellId: Id, storeOrStoreId?: StoreOrStoreId, )
| 816 | ); |
| 817 | |
| 818 | export const useHasCell: typeof useHasCellDecl = ( |
| 819 | tableId: Id, |
| 820 | rowId: Id, |
| 821 | cellId: Id, |
| 822 | storeOrStoreId?: StoreOrStoreId, |
| 823 | ): boolean => |
| 824 | useListenable(CELL, useStoreOrStoreById(storeOrStoreId), ReturnType.Boolean, [ |
| 825 | tableId, |
| 826 | rowId, |
| 827 | cellId, |
| 828 | ]); |
| 829 | |
| 830 | export const useCell: typeof useCellDecl = ( |
| 831 | tableId: Id, |
searching dependent graphs…