import { Action } from './action.types'; export type ActionReducer = { action: V; reducer: (state: S, action: V) => S; };