Type alias ReducersMapObject<S, A>

ReducersMapObject<S, A>: {
    [K in keyof S]: Reducer<S[K], A>
}

Object whose values correspond to different reducer functions.

Type Parameters

  • S = any
  • A extends Action = Action

    The type of actions the reducers can potentially respond to.