( tableId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 533 | ]; |
| 534 | |
| 535 | export const useTableCellIds = ( |
| 536 | tableId: MaybeAccessor<Id>, |
| 537 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 538 | ): Accessor<Ids> => |
| 539 | useListenable( |
| 540 | TABLE + CELL_IDS, |
| 541 | useStoreOrStoreById(storeOrStoreId), |
| 542 | ReturnType.Array, |
| 543 | [tableId], |
| 544 | ); |
| 545 | |
| 546 | export const useHasTableCell = ( |
| 547 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…