@excalidraw/excalidraw
Version:
Excalidraw as a React component
7 lines (6 loc) • 307 B
TypeScript
import type { ElementsMap, ExcalidrawElement } from "./element/types";
export interface Distribution {
space: "between";
axis: "x" | "y";
}
export declare const distributeElements: (selectedElements: ExcalidrawElement[], elementsMap: ElementsMap, distribution: Distribution) => ExcalidrawElement[];