feat: added competition preview page model

This commit is contained in:
rngsurrounded
2025-03-01 15:03:58 +09:00
parent a232b287aa
commit 692e9b5be8
19 changed files with 150 additions and 229 deletions
@@ -0,0 +1,17 @@
enum Status {
InProgress = 'В процессе',
NotParticipating = 'Не участвую',
Completed = 'Завершено'
}
interface Competition {
id: string;
name: string;
imageUrl: string;
isOlympics: boolean;
status: Status;
description?: string;
}
export {Status}
export type {Competition}