feat: add restart button
All checks were successful
deploy to cloudflare pages / deploy (push) Successful in 33s

This commit is contained in:
uku 2024-10-27 18:29:45 +01:00
parent c06553fb74
commit 89a53862d9
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
5 changed files with 151 additions and 79 deletions

View file

@ -4,9 +4,12 @@ export interface GameOptions {
tram: boolean;
}
export interface GameData {
export interface MapData {
lines: [GeoJSON.Feature, string][];
stops: [number, number][];
}
export interface GameData {
stopName: string;
gameId: string;
}