UNPKG

ts-jsdk

Version:

TypeScript implementation of the Java platform

8 lines (7 loc) 142 B
export declare class Point { private x; private y; constructor(x?: number, y?: number); getX(): number; getY(): number; }