Populated Content
This commit is contained in:
24
resources/js/types/index.d.ts
vendored
24
resources/js/types/index.d.ts
vendored
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user