UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

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