viz.renderers.ArchitectureEdge
export interface ArchitectureEdge {
/** Source node ID */
from: string;
/** Target node ID */
to: string;
/** Optional label */
label?: string;
}from(string)- – Source node ID
to(string)- – Target node ID
label(string)optional- – Optional label
Edge connecting two nodes.