@groww-tech/react-charts
Version:
React charts library tailored as per Groww needs
7 lines (6 loc) • 345 B
TypeScript
/// <reference types="react" />
import { Point, LinePathData, LineGraphProps, ToolTipData, ToolTipSeriesData } from './lineGraphTypes';
import './lineGraph.css';
declare const LineGraph: (props: LineGraphProps) => JSX.Element | null;
export default LineGraph;
export type { Point, LinePathData, LineGraphProps, ToolTipData, ToolTipSeriesData };