UNPKG

react-native-wagmi-charts

Version:

A sweet candlestick chart for React Native

18 lines 715 B
import React from 'react'; import type { TLineChartDataProp } from './types'; import type { TLineChartContext, YRangeProp } from './types'; export declare const LineChartContext: React.Context<TLineChartContext>; type LineChartProviderProps = { children: React.ReactNode; data: TLineChartDataProp; yRange?: YRangeProp; onCurrentIndexChange?: (x: number) => void; xLength?: number; xDomain?: [number, number]; }; export declare function LineChartProvider({ children, data, yRange, onCurrentIndexChange, xLength, xDomain, }: LineChartProviderProps): React.JSX.Element; export declare namespace LineChartProvider { var displayName: string; } export {}; //# sourceMappingURL=Context.d.ts.map