added basic types for web

This commit is contained in:
2025-05-07 19:15:39 +02:00
parent 86fb93f665
commit bbab72187a

8
web/src/types.ts Normal file
View File

@@ -0,0 +1,8 @@
interface Player {
id: string
}
interface Game {
id: string,
score: number
}