tournament type added
This commit is contained in:
parent
86101f130f
commit
3539c01db3
|
|
@ -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;
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue