UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

11 lines (10 loc) 479 B
import type React from 'react'; import type { BaseChartProps } from './BaseChart'; import type { IFunnel3dChartSpec } from '@visactor/vchart-extension'; export interface Funnel3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IFunnel3dChartSpec>, 'type'> { } export declare const Funnel3dChart: React.ForwardRefExoticComponent<Funnel3dChartProps & { children?: React.ReactNode; } & { type?: 'funnel3d'; } & React.RefAttributes<any>>;