( tableId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 525 | tableId, |
| 526 | ]); |
| 527 | export const useTableState = ( |
| 528 | tableId: MaybeAccessor<Id>, |
| 529 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 530 | ): [Accessor<Table>, (table: Table) => void] => [ |
| 531 | useTable(tableId, storeOrStoreId), |
| 532 | useSetTableCallback(tableId, getArg, storeOrStoreId), |
| 533 | ]; |
| 534 | |
| 535 | export const useTableCellIds = ( |
| 536 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…