export interface IconLink { readonly href: string; readonly icon: string; readonly title: string; } export interface EdgeRef { readonly label: string; readonly ref: string | null; } export type EdgeRelation = "conflictsWith" | "enables" | "reinforces" | "requires" | "tensionsWith";