UNPKG

execution-engine

Version:

A TypeScript library for tracing and visualizing code execution workflows.

16 lines 475 B
export interface EngineEdgeData { id: string; source: string | number; target: string | number; parent?: string; parallel?: boolean | string; } /** * @deprecated Use `EngineEdgeData` instead. * * ⚠️ `EdgeData` is deprecated and will be removed in a future release. * Migrate to `EngineEdgeData` to ensure compatibility with future updates. */ export interface EdgeData extends EngineEdgeData { } //# sourceMappingURL=engineEdgeData.model.d.ts.map