1 | import '@antv/g2/lib/geometry/shape/line/step';
|
2 | import BaseGemo, { IBaseGemoProps } from './Base';
|
3 | import '@antv/g2/lib/geometry/shape/line/step';
|
4 | export interface ILineGemoProps extends IBaseGemoProps {
|
5 | }
|
6 | export default class LineGeom extends BaseGemo<ILineGemoProps> {
|
7 | GemoBaseClassName: string;
|
8 | }
|