@plait/draw
Version:
Implementation of the core logic of the flowchart drawing tool plugin.
9 lines (8 loc) • 340 B
TypeScript
import { PlaitBoard } from '@plait/core';
import { TextManage } from '@plait/common';
export interface FakeCreateTextRef {
g: SVGGElement;
textManage: TextManage;
}
export declare const withGeometryCreateByDrag: (board: PlaitBoard) => PlaitBoard;
export declare const withGeometryCreateByDrawing: (board: PlaitBoard) => PlaitBoard;