@plait/draw
Version:
Implementation of the core logic of the flowchart drawing tool plugin.
11 lines (10 loc) • 760 B
TypeScript
import { BasicShapes, FlowchartSymbols, ArrowLineShape, SwimlaneDrawSymbols, TableSymbols, UMLSymbols, VectorLinePointerType } from '../interfaces';
export type DrawPointerType = BasicShapes | ArrowLineShape | FlowchartSymbols | SwimlaneDrawSymbols | TableSymbols | UMLSymbols | VectorLinePointerType;
export declare const getGeometryPointers: () => string[];
export declare const getSwimlanePointers: () => string[];
export declare const getSwimlaneShapes: () => string[];
export declare const getBasicPointers: () => string[];
export declare const getFlowchartPointers: () => string[];
export declare const getUMLPointers: () => string[];
export declare const getArrowLinePointers: () => string[];
export declare const getVectorLinePointers: () => string[];