UNPKG

@zsviczian/excalidraw

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