1 | import BaseGemo, { IBaseGemoProps } from './Base';
|
2 | import '@antv/g2/lib/geometry/shape/schema';
|
3 | import '@antv/g2/lib/geometry/shape/schema/candle';
|
4 | import '@antv/g2/lib/geometry/shape/schema/box';
|
5 | export interface ISchemaGemoProps extends IBaseGemoProps {
|
6 | }
|
7 | export default class SchemaGeom extends BaseGemo<ISchemaGemoProps> {
|
8 | GemoBaseClassName: string;
|
9 | }
|