export interface Domain { chromosome?: string; start: number; end: number; }; export type YRange = { min: number; max: number; }; export interface Feature { coordinates: Domain; name: string; color?: string; }; export type ValuedPoint = { x: number; min: number; max: number; };