import { LineChartProps } from '../types'; import * as d3 from 'd3'; export type DrawGridProps = { svg: d3.Selection; yScale: d3.ScaleLinear; xScale: d3.ScaleLinear; lastIndex: number; yTicksCount: number; } & Pick;