mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-23 07:27:10 +00:00
feat: added competition preview page model
This commit is contained in:
@@ -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}
|
||||
Reference in New Issue
Block a user