import { ChartData } from "./IChartData"; export interface LineChartData { name: string; color?: string; series: ChartData[]; }