@groww-tech/react-charts
Version:
React charts library tailored as per Groww needs
11 lines (10 loc) • 490 B
TypeScript
/// <reference types="react" />
import type { Candle, CandleChartDefaultProps, CandleChartRequiredProps, CandleToolTipData } from './candleChartTypes';
import './candleChart.css';
declare const CandleChart: {
(props: Props): JSX.Element | null;
defaultProps: CandleChartDefaultProps;
};
declare type Props = CandleChartDefaultProps & CandleChartRequiredProps;
export default CandleChart;
export type { Candle, CandleChartRequiredProps, CandleChartDefaultProps, CandleToolTipData };