@visactor/react-vchart
Version:
The react version of VChart 4.x
11 lines (10 loc) • 445 B
TypeScript
import type React from 'react';
import type { ILineChartSpec } from '@visactor/vchart';
import type { BaseChartProps } from './BaseChart';
export interface LineChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<ILineChartSpec>, 'type'> {
}
export declare const LineChart: React.ForwardRefExoticComponent<LineChartProps & {
children?: React.ReactNode;
} & {
type?: 'line';
} & React.RefAttributes<any>>;