UNPKG

@plait/draw

Version:

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

10 lines (9 loc) 250 B
import { PlaitElement, Point } from '@plait/core'; export interface PlaitCommonImage extends PlaitElement { points: [Point, Point]; type: 'image'; angle: number; } export interface PlaitImage extends PlaitCommonImage { url: string; }