UNPKG

@webwriter/flowchart

Version:

Create programming flowcharts with interactive tasks. Use standardized Elements such as loops and Branchings.

9 lines (8 loc) 179 B
import { GraphNode } from "./GraphNode"; export interface Arrow { id: string; from: GraphNode; to: GraphNode; points?: { x: number; y: number }[]; text?: string; }