import { Point as PointScale } from '@antv/scale'; import { PointScale as PointScaleSpec } from '../spec'; import { ScaleComponent as SC } from '../runtime'; export type PointOptions = Omit; export const Point: SC = (options) => { return new PointScale(options); }; Point.props = {};