The debug action creators.

interface DebugActionCreators {
    disableDebug(): { payload: void; type: string };
    enableDebug(): { payload: void; type: string };
}

Methods

  • Disables debug information on requests.

    Returns { payload: void; type: string }

    A dispatchable action.

  • Enables debug information on requests.

    Returns { payload: void; type: string }

    A dispatchable action.