diff --git a/src/types/events.ts b/src/types/events.ts index 0c68561..59401e6 100644 --- a/src/types/events.ts +++ b/src/types/events.ts @@ -14,3 +14,25 @@ export interface eventType { ]; content_html: string; } + +export interface tournamentType { + id: number; + current: number; + header: string; + events: [ + { + start: string; + end: string; + name: string; + place: string; + img: string; + } + ]; + translations: [ + { + model_id: string; + locale: string; + attribute_data: string; + } + ]; +}