Update src/client/types/format.ts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
sora-ext 2025-02-28 17:50:21 +01:00
parent 3ea48d69ab
commit b030286f9c

View File

@ -8,6 +8,7 @@ declare global {
interface geoloc {
latlon: [number, number]
notes: string
step: -1
}
interface map {
@ -25,7 +26,7 @@ declare global {
hotel: geoloc | null
places: {
restaurants: geoloc[]
places: geoloc[]
activities: geoloc[]
}
notes: string
}
@ -49,7 +50,7 @@ const leg_template: leg = {
map: { zoom: 2, center: { lng: 0, lat: 0 } },
travel: [],
hotel: null,
places: { restaurants: [], places: [] },
places: { restaurants: [], activities: [] },
notes: "",
date_range: null
}