Files
Kmake/test/fixtures/snapshot/ts-example.ts

12 lines
171 B
TypeScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
class VirtualPoint {
x: number;
y: number;
constructor(x: number, y: number) {
this.x = x;
this.y = y;
}
}
const newVPoint = new VirtualPoint(13, 56);