UNPKG

487 BTypeScriptView Raw
1/// <reference types="react" />
2import '@antv/g2/lib/geometry/shape/line';
3import '@antv/g2/lib/geometry/shape/area';
4import { ILineGemoProps } from './Line';
5import { IPointGemoProps } from './Point';
6import { IAreaGemoProps } from './Area';
7export interface ILineAdvanceGemoProps extends ILineGemoProps {
8 point?: boolean | IPointGemoProps;
9 area?: boolean | IAreaGemoProps;
10}
11declare const LineAdvance: (props: ILineAdvanceGemoProps) => JSX.Element;
12export default LineAdvance;