( valueId: MaybeAccessor<Id> | GetId<Parameter>, getValue: (parameter: Parameter, store: Store) => Value | MapValue, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, then?: (store: Store, value: Value | MapValue) => void, )
| 845 | useStoreSetCallback(storeOrStoreId, PARTIAL + VALUES, getPartialValues, then); |
| 846 | |
| 847 | export const useSetValueCallback = <Parameter>( |
| 848 | valueId: MaybeAccessor<Id> | GetId<Parameter>, |
| 849 | getValue: (parameter: Parameter, store: Store) => Value | MapValue, |
| 850 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 851 | then?: (store: Store, value: Value | MapValue) => void, |
| 852 | ): ParameterizedCallback<Parameter> => |
| 853 | useStoreSetCallback(storeOrStoreId, VALUE, getValue, then, valueId); |
| 854 | |
| 855 | export const useDelTablesCallback = ( |
| 856 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
searching dependent graphs…