( tableId: MaybeAccessor<Id>, rowId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 624 | ]); |
| 625 | |
| 626 | export const useRowState = ( |
| 627 | tableId: MaybeAccessor<Id>, |
| 628 | rowId: MaybeAccessor<Id>, |
| 629 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 630 | ): [Accessor<Row>, (row: Row) => void] => [ |
| 631 | useRow(tableId, rowId, storeOrStoreId), |
| 632 | useSetRowCallback(tableId, rowId, getArg, storeOrStoreId), |
| 633 | ]; |
| 634 | |
| 635 | export const useCellIds = ( |
| 636 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…