This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useReducer, Dispatch } from "react"; | |
export enum USE_UNDO_REDUCER_TYPES { | |
undo = "UNDO", | |
redo = "REDO", | |
} | |
export type UndoRedoAction = { | |
type: USE_UNDO_REDUCER_TYPES; | |
}; | |
export type HistoryType<T> = { |