Type alias ActionFromReducersMapObject<M>

ActionFromReducersMapObject<M>: M extends ReducersMapObject<any, any>
    ? ActionFromReducer<ReducerFromReducersMapObject<M>>
    : never

Infer action union type from a ReducersMapObject.

Type Parameters

  • M

    Object map of reducers as provided to combineReducers(map: M).