import ActionContext from './ActionContext'; import ActionFunction from './ActionFunction'; interface DispatchFunction { (action: ActionFunction, actionType: string, args: IArguments, actionContext: ActionContext): Promise | void; } export default DispatchFunction;