import {ChildPortRef} from "./ChildPortRef"; /** * Directional relationship between 2 nodes, to be used for passing data. */ export interface Connection { from: ChildPortRef; to: ChildPortRef; }