UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

11 lines (10 loc) 457 B
import type React from 'react'; import type { IFunnelChartSpec } from '@visactor/vchart'; import type { BaseChartProps } from './BaseChart'; export interface FunnelChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IFunnelChartSpec>, 'type'> { } export declare const FunnelChart: React.ForwardRefExoticComponent<FunnelChartProps & { children?: React.ReactNode; } & { type?: 'funnel'; } & React.RefAttributes<any>>;