UNPKG

oo-redux-utils2

Version:
5 lines (4 loc) 256 B
import AbstractAction from "./AbstractAction"; import type { ReduxDispatch } from "./ReduxDispatch"; export type Dispatch = (action: AbstractAction<any, any>) => void; export default function createActionDispatcher(reduxDispatch: ReduxDispatch): Dispatch;