interface IShapePoints {
    x?: number;
    y?: number & number[];
    y0?: number;
    size?: number;
}
export default IShapePoints;
