import { Action, AnyAction, Dispatch, MiddlewareAPI } from 'redux'; export type RootDispatch = Dispatch; export type RootMiddleware = (store: MiddlewareAPI) => (next: RootDispatch) => (action: AnyAction) => any; export type RootStateOrAny = any;