UNPKG

@plait/draw

Version:

Implementation of the core logic of the flowchart drawing tool plugin.

8 lines (7 loc) 297 B
import { Point, RectangleClient, SVGArcCommand } from '@plait/core'; import { ShapeEngine } from '../../interfaces'; export declare function generateCloudPath(rectangle: RectangleClient): { startPoint: Point; arcCommands: SVGArcCommand[]; }; export declare const CloudEngine: ShapeEngine;