Interface DebugActionCreators
interface DebugActionCreators { disableDebug(): { payload: void; type: string }; enableDebug(): { payload: void; type: string };} Methods
disableDebug
- disableDebug(): { payload: void; type: string }
Returns { payload: void; type: string }
A dispatchable action.
enableDebug
- enableDebug(): { payload: void; type: string }
Returns { payload: void; type: string }
A dispatchable action.
The debug action creators.