import { BarChartProps, BarChartLineData } from '../types'; import * as d3 from 'd3'; export type DrawLinesProps = { min: number; svg: d3.Selection; yScale: d3.ScaleLinear; xScale: d3.ScaleBand; lineData: BarChartLineData[]; } & Pick;