( tableId: MaybeAccessor<Id> | GetId<Parameter>, rowId: MaybeAccessor<Id> | GetId<Parameter>, getRow: (parameter: Parameter, store: Store) => Row, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, then?: (store: Store, row: Row) => void, )
| 756 | useStoreSetCallback(storeOrStoreId, TABLE, getTable, then, tableId); |
| 757 | |
| 758 | export const useSetRowCallback = <Parameter>( |
| 759 | tableId: MaybeAccessor<Id> | GetId<Parameter>, |
| 760 | rowId: MaybeAccessor<Id> | GetId<Parameter>, |
| 761 | getRow: (parameter: Parameter, store: Store) => Row, |
| 762 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 763 | then?: (store: Store, row: Row) => void, |
| 764 | ): ParameterizedCallback<Parameter> => |
| 765 | useStoreSetCallback(storeOrStoreId, ROW, getRow, then, tableId, rowId); |
| 766 | |
| 767 | export const useAddRowCallback = <Parameter>( |
| 768 | tableId: MaybeAccessor<Id> | GetId<Parameter>, |
searching dependent graphs…