( getPartialValues: (parameter: Parameter, store: Store) => Values, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, then?: (store: Store, partialValues: Values) => void, )
| 838 | useStoreSetCallback(storeOrStoreId, VALUES, getValues, then); |
| 839 | |
| 840 | export const useSetPartialValuesCallback = <Parameter>( |
| 841 | getPartialValues: (parameter: Parameter, store: Store) => Values, |
| 842 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 843 | then?: (store: Store, partialValues: Values) => void, |
| 844 | ): ParameterizedCallback<Parameter> => |
| 845 | useStoreSetCallback(storeOrStoreId, PARTIAL + VALUES, getPartialValues, then); |
| 846 | |
| 847 | export const useSetValueCallback = <Parameter>( |
| 848 | valueId: MaybeAccessor<Id> | GetId<Parameter>, |
searching dependent graphs…