UNPKG

@plait/draw

Version:

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

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