UNPKG

@plait/draw

Version:

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

7 lines (6 loc) 269 B
import { PlaitArrowLine } from '../interfaces'; import { Generator } from '@plait/common'; export declare class ArrowLineShapeGenerator extends Generator<PlaitArrowLine> { canDraw(element: PlaitArrowLine): boolean; draw(element: PlaitArrowLine): SVGGElement; }