@excalidraw/math
Version:
Excalidraw math functions
13 lines (12 loc) • 596 B
TypeScript
import type { ExcalidrawElement } from "@excalidraw/element/types";
import type { Scene } from "@excalidraw/element";
import "./ElementLinkDialog.scss";
import type { AppProps, UIAppState } from "../types";
declare const ElementLinkDialog: ({ sourceElementId, onClose, appState, scene, generateLinkForSelection, }: {
sourceElementId: ExcalidrawElement["id"];
appState: UIAppState;
scene: Scene;
onClose?: (() => void) | undefined;
generateLinkForSelection: AppProps["generateLinkForSelection"];
}) => import("react/jsx-runtime").JSX.Element;
export default ElementLinkDialog;