UNPKG

redux-undo-actions

Version:

Redux middleware for undo/redo actions by dispatching reverting action

6 lines 357 B
export const UNDO = '@@redux-undo-actions/UNDO'; export const REDO = '@@redux-undo-actions/REDO'; export const HISTORY_ADD = '@@redux-undo-actions/HISTORY_ADD'; export const HISTORY_CLEAR = '@@redux-undo-actions/HISTORY_CLEAR'; export const HISTORY_UNDO = '@@redux-undo-actions/HISTORY_UNDO'; export const HISTORY_REDO = '@@redux-undo-actions/HISTORY_REDO';