Added About Page
This commit is contained in:
19
resources/js/types/index.d.ts
vendored
19
resources/js/types/index.d.ts
vendored
@@ -53,6 +53,20 @@ export interface Country {
|
||||
continent: Continent;
|
||||
}
|
||||
|
||||
/*
|
||||
'tour_id',
|
||||
'description',
|
||||
'content',
|
||||
'image',
|
||||
*/
|
||||
export interface TourDay {
|
||||
id: number
|
||||
tour_id: number
|
||||
description: string
|
||||
content: string
|
||||
image: string | null
|
||||
}
|
||||
|
||||
export interface Tour {
|
||||
id: number
|
||||
name: string
|
||||
@@ -61,5 +75,8 @@ export interface Tour {
|
||||
price: number
|
||||
level: string
|
||||
short_description: string
|
||||
countries: ?Country[]
|
||||
countries: Country[] | null
|
||||
tour_days: TourDay[] | null
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user