UNPKG

488 BTypeScriptView Raw
1import React from '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) => React.JSX.Element;
12export default LineAdvance;