UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

5 lines (4 loc) 272 B
import { BaseComponentProps } from './BaseComponent'; import type { ICartesianAxisSpec, IPolarAxisSpec } from '@visactor/vchart'; export type AxisProps = (ICartesianAxisSpec | IPolarAxisSpec) & BaseComponentProps; export declare const Axis: import("react").FC<AxisProps>;