UNPKG

@webwriter/flowchart

Version:

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

8 lines 220 B
export interface GraphNode { id: string; node: string; text: string; x: number; y: number; connections?: { anchor: number; direction: string, connectedToId: string, arrowID: string, text?: string }[]; }