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