DependencyGraphTypes.DependencyEdge
Home > @backstage/core-components > DependencyGraphTypes > DependencyEdge
Edge of DependencyGraph()
Signature:
type DependencyEdge<T = {}> = T & {
from: string;
to: string;
label?: string;
distance?: number;
};