20 lines
250 B
TypeScript
20 lines
250 B
TypeScript
export type Screen =
|
|
| "home"
|
|
| "lobby"
|
|
| "game"
|
|
| "solo"
|
|
| "profile"
|
|
| "leaderboard"
|
|
| "daily"
|
|
| "blitz";
|
|
|
|
export type WikiArticle = {
|
|
title: string;
|
|
html: string;
|
|
};
|
|
|
|
export type Puzzle = {
|
|
start: string;
|
|
target: string;
|
|
};
|