NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/g2/esm/geometry/schema.d.ts

19 lines
576 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { LooseObject } from '../interface';
import Geometry from './base';
/** 引入对应的 ShapeFactory */
import './shape/schema';
/**
* Schema
*/
export default class Schema extends Geometry {
readonly type: string;
readonly shapeType: string;
protected generatePoints: boolean;
/**
* Shape
* @param record
* @returns
*/
protected createShapePointsCfg(record: LooseObject): import("../interface").ShapePoint;
}