UNPKG

@groww-tech/react-charts

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