2026-04-10 17:30:13 +02:00
|
|
|
export type Screen = "home" | "lobby" | "game" | "solo" | "profile" | "leaderboard";
|
2026-04-10 15:43:07 +02:00
|
|
|
|
|
|
|
|
export type WikiArticle = {
|
|
|
|
|
title: string;
|
|
|
|
|
html: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type Puzzle = {
|
|
|
|
|
start: string;
|
|
|
|
|
target: string;
|
|
|
|
|
};
|