Looking for a solution with two reducers:
export function reducer1(state: State = initialState,: Actions1.Actions1);
export function reducer2(state: State = initialState,: Actions2.Actions1);
What I want is for both reducers to affect the same state object.
Since they will be working on the same state object, splitting it into smaller pieces like this answer suggests is not an option.