UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

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