UNPKG

@groww-tech/react-charts

Version:
11 lines (10 loc) 490 B
/// <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 };