UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

15 lines (14 loc) 321 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Point = void 0; /** * A class to represent an X,Y point */ var Point = /** @class */ (function () { function Point(x, y) { this.x = x; this.y = y; } return Point; }()); exports.Point = Point;