@antv/g2
Version:
the Grammar of Graphics in Javascript
16 lines (15 loc) • 468 B
TypeScript
import { IGroup, IShape } from '../../../dependents';
import { ShapeInfo } from '../../../interface';
export declare const SHAPES: string[];
export declare const HOLLOW_SHAPES: string[];
/**
* @ignore
* Draws points
* @param shape
* @param cfg
* @param container
* @param shapeName
* @param isStroke
* @returns points
*/
export declare function drawPoints(shape: any, cfg: ShapeInfo, container: IGroup, shapeName: string, isStroke: boolean): IShape | IGroup;