Interface DebugActionCreators

The debug action creators.

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

Methods