UNPKG

oo-redux-utils2

Version:
6 lines (5 loc) 194 B
import AbstractAction from './AbstractAction'; export type ReduxActionObject = { readonly type: AbstractAction<any, any>; }; export type ReduxDispatch = (action: ReduxActionObject) => void;