@visactor/react-vchart
Version:
The react version of VChart 4.x
8 lines (7 loc) • 354 B
TypeScript
import { BaseSeriesProps } from './BaseSeries';
import type { IWordCloudSeriesSpec } from '@visactor/vchart';
export type WordCloudProps = BaseSeriesProps & Omit<IWordCloudSeriesSpec, 'type'>;
export declare const WordCloud: import("react").FC<BaseSeriesProps & Omit<IWordCloudSeriesSpec, "type"> & {
updateId?: number;
componentId?: string;
}>;