import { BooleanLegend } from './boolean-legend'; import { Mapper } from './mapper'; import { EdgeShape } from '../styles/constants/edge-shape'; export interface EdgeLegend { summary_color: Mapper; summary_width: { minValue: number; maxValue: number; minWidth: number; maxWidth: number; }; evidence_color: Mapper; mutation_color: BooleanLegend; mutation_width: BooleanLegend; expansion: BooleanLegend; negative?: BooleanLegend; }