UNPKG

@plait/draw

Version:

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

5 lines (4 loc) 235 B
import { Point, RectangleClient } from '@plait/core'; import { ShapeEngine } from '../../interfaces'; export declare const getTrapezoidPoints: (rectangle: RectangleClient) => Point[]; export declare const TrapezoidEngine: ShapeEngine;