added basic types for web

This commit is contained in:
Niklas Kapelle 2025-05-07 19:15:39 +02:00
parent 86fb93f665
commit bbab72187a
Signed by: niklas
GPG Key ID: 4EB651B36D841D16

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

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