UNPKG

trassel

Version:
9 lines (8 loc) 234 B
import { NodeID } from "./nodeid"; /** Minimum configuration edges */ export interface IBasicEdge { /** Where the edge is directed from */ sourceNode: NodeID; /** Where the edge is directed to */ targetNode: NodeID; }