UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

11 lines (10 loc) 435 B
import type React from 'react'; import type { IVennChartSpec } from '@visactor/vchart'; import type { BaseChartProps } from './BaseChart'; export interface VennChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<IVennChartSpec, 'type'> { } export declare const VennChart: React.ForwardRefExoticComponent<VennChartProps & { children?: React.ReactNode; } & { type: 'venn'; } & React.RefAttributes<any>>;