import { ActionReducer } from './action-reducer.type'; import { Action } from './action.types'; export type ReducerConfig = { reducers: ActionReducer[]; }; export type ActionReducerMap = { [key in keyof S]?: ReducerConfig; };