@apoorvdwi/excalidraw-collab
Version:
Excalidraw as a React component
7 lines (6 loc) • 585 B
TypeScript
import { ExcalidrawElement } from "./element/types";
import { AppState } from "./types";
export declare const moveOneLeft: (elements: readonly ExcalidrawElement[], appState: AppState) => ExcalidrawElement[];
export declare const moveOneRight: (elements: readonly ExcalidrawElement[], appState: AppState) => ExcalidrawElement[];
export declare const moveAllLeft: (elements: readonly ExcalidrawElement[], appState: AppState) => readonly ExcalidrawElement[];
export declare const moveAllRight: (elements: readonly ExcalidrawElement[], appState: AppState) => readonly ExcalidrawElement[];