UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

9 lines (8 loc) 171 B
/** * A class to represent an X,Y point */ export declare class Point { readonly x: number; readonly y: number; constructor(x: number, y: number); }