1
Fork 0
holycow/holycow_frontend/src/holycow.ts

13 lines
184 B
TypeScript
Raw Normal View History

2024-11-30 13:07:23 +00:00
export enum Outcome {
AWins = "AWins",
BWins = "BWins",
Tie = "Tie",
}
export type PlayerO = {
id: number,
telegram_id: number,
username: string,
human_score: null | number,
}