@zsviczian/excalidraw
Version:
Excalidraw as a React component
8 lines (7 loc) • 312 B
TypeScript
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 {};