Featured tours working
This commit is contained in:
18
resources/js/types/index.d.ts
vendored
18
resources/js/types/index.d.ts
vendored
@@ -46,16 +46,20 @@ export interface Continent {
|
||||
internal_name: string
|
||||
}
|
||||
|
||||
export interface Country {
|
||||
id: number
|
||||
name: string
|
||||
internal_name: string
|
||||
continent: Continent;
|
||||
}
|
||||
|
||||
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
|
||||
price: number
|
||||
level: string
|
||||
short_description: string
|
||||
countries: Country[]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user