UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

10 lines (9 loc) 231 B
/** * A class to represent an X,Y point */ export declare class Point { static isEqual(point1: Point, point2: Point): boolean; readonly x: number; readonly y: number; constructor(x: number, y: number); }