• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1class VirtualPoint {
2  x: number;
3  y: number;
4
5  constructor(x: number, y: number) {
6    this.x = x;
7    this.y = y;
8  }
9}
10
11const newVPoint = new VirtualPoint(13, 56);
12