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