tournament type added

This commit is contained in:
VividTruthKeeper 2022-08-20 00:35:36 +05:00
parent 86101f130f
commit 3539c01db3
1 changed files with 22 additions and 0 deletions

View File

@ -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;
}
];
}