export type LinePoint = { time: string | Date; value: string; customtooltip: string; }; export type SymbolType = 'circle' | 'square' | 'triangle'; export type LineData = { points: LinePoint[]; color: string; title: string; symbol: SymbolType; strokeDasharray?: number; }; //# sourceMappingURL=line-chart.types.d.ts.map