frontend-compiler-example/static/ts/index.ts
2025-04-11 18:30:37 -04:00

15 lines
148 B
TypeScript

// testing file
interface Point {
x: number;
y: number;
name: string;
}
const p: Point = {
x: 100,
y: 200,
name: "foo",
};
console.log(p);