@laserware/stasis
    Preparing search index...

    Interface ThunkDispatch<State, ExtraThunkArg, BasicAction>

    The dispatch method as modified by React-Thunk; overloaded so that you can dispatch:

    • standard (object) actions: dispatch() returns the action itself
    • thunk actions: dispatch() returns the thunk's return value

    Type Parameters

    • State

      The redux state

    • ExtraThunkArg

      The extra argument passed to the inner function of thunks (if specified when setting up the Thunk middleware)

    • BasicAction extends Action

      The (non-thunk) actions that can be dispatched.