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