UNPKG

@excalidraw/excalidraw

Version:
7 lines (6 loc) 246 B
import { Action } from "./types"; import History from "../history"; declare type ActionCreator = (history: History) => Action; export declare const createUndoAction: ActionCreator; export declare const createRedoAction: ActionCreator; export {};