UNPKG

316 BTypeScriptView Raw
1import BaseGemo, { IBaseGemoProps } from './Base';
2import '@antv/g2/lib/geometry/shape/polygon';
3import '@antv/g2/lib/geometry/shape/polygon/square';
4export interface IPolygonGemoProps extends IBaseGemoProps {
5}
6export default class PolygonGeom extends BaseGemo<IPolygonGemoProps> {
7 GemoBaseClassName: string;
8}