UNPKG

ts-jsdk

Version:

TypeScript implementation of the Java platform

13 lines 218 B
export class Point { constructor(x = 0, y = 0) { this.x = x; this.y = y; } getX() { return this.x; } getY() { return this.y; } } //# sourceMappingURL=Point.js.map