UNPKG

react-native-wagmi-charts

Version:

A sweet candlestick chart for React Native

23 lines 1.02 kB
import * as React from 'react'; import { WithTimingConfig } from 'react-native-reanimated'; import { LineChartPathProps } from './Path'; type LineChartPathWrapperProps = { animationDuration?: number; animationProps?: Omit<Partial<WithTimingConfig>, 'duration'>; children?: React.ReactNode; color?: string; inactiveColor?: string; width?: number; widthOffset?: number; pathProps?: Partial<LineChartPathProps>; showInactivePath?: boolean; animateOnMount?: 'foreground'; mountAnimationDuration?: number; mountAnimationProps?: Partial<WithTimingConfig>; }; export declare function LineChartPathWrapper({ animationDuration, animationProps, children, color, inactiveColor, width: strokeWidth, widthOffset, pathProps, showInactivePath, animateOnMount, mountAnimationDuration, mountAnimationProps, }: LineChartPathWrapperProps): React.JSX.Element; export declare namespace LineChartPathWrapper { var displayName: string; } export {}; //# sourceMappingURL=ChartPath.d.ts.map