( tableId: Id, storeOrStoreId?: StoreOrStoreId, )
| 702 | ]; |
| 703 | |
| 704 | export const useTableCellIds: typeof useTableCellIdsDecl = ( |
| 705 | tableId: Id, |
| 706 | storeOrStoreId?: StoreOrStoreId, |
| 707 | ): Ids => |
| 708 | useListenable( |
| 709 | TABLE + CELL_IDS, |
| 710 | useStoreOrStoreById(storeOrStoreId), |
| 711 | ReturnType.Array, |
| 712 | [tableId], |
| 713 | ); |
| 714 | |
| 715 | export const useHasTableCell: typeof useHasTableCellDecl = ( |
| 716 | tableId: Id, |
searching dependent graphs…