@zsviczian/excalidraw
Version:
Excalidraw as a React component
5 lines (4 loc) • 329 B
TypeScript
import type { ExcalidrawFreeDrawElement } from "./types";
export declare const getFreedrawOutlinePoints: (element: ExcalidrawFreeDrawElement) => [number, number][];
export declare const getSvgPathFromStroke: (points: number[][]) => string;
export declare const getFreeDrawSvgPath: (element: ExcalidrawFreeDrawElement) => string;