Interface DebugActionCreators

The debug action creators.

See Dispatch actions.

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

Methods