@zsviczian/excalidraw
Version:
Excalidraw as a React component
12 lines (11 loc) • 464 B
TypeScript
import type { ExcalidrawElement } from "@excalidraw/element/types";
import type Scene from "../../scene/Scene";
import type { AppState } from "../../types";
interface MultiAngleProps {
elements: readonly ExcalidrawElement[];
scene: Scene;
appState: AppState;
property: "angle";
}
declare const MultiAngle: ({ elements, scene, appState, property, }: MultiAngleProps) => import("react/jsx-runtime").JSX.Element;
export default MultiAngle;