Populated Content

This commit is contained in:
2025-09-15 11:44:26 +10:00
parent 5ad54abff2
commit f0e7ce30fc
177 changed files with 1859 additions and 5463 deletions

View File

@@ -35,3 +35,27 @@ export interface User {
}
export type BreadcrumbItemType = BreadcrumbItem;
export interface GlobalProperties {
continents_with_tours: Continent[];
}
export interface Continent {
id: number
name: string
internal_name: string
}
export interface Tour {
id: number
title: string
internal_name: string
continentId: number
continentName: string
countryId: number
countryName: string
level: string
description?: string
price: number
length: number
}