Type Alias StoreActionMapHanlder<T, K, M>

StoreActionMapHanlder<T, K, M>: {
    [Key in keyof M]: [callback: ((getValues: (() => Pick<T, K>), setValues: ((values: Pick<T, K>) => void), ...args: Parameters<M[Key]>) => ReturnType<M[Key]>), deps: K[]]
}

Type Parameters