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