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

12 lines
184 B
TypeScript

export enum Outcome {
AWins = "AWins",
BWins = "BWins",
Tie = "Tie",
}
export type PlayerO = {
id: number,
telegram_id: number,
username: string,
human_score: null | number,
}