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-27 17:30:58 +01:00
parent 52b3d98fec
commit fe4190313b

View File

@ -1,17 +1,21 @@
declare global { declare global {
interface map { interface LatLng {
zoom: number
center: {
lat: number lat: number
lng: number lng: number
} }
}
interface geoloc { interface geoloc {
latlon: [number, number] latlon: [number, number]
notes: string notes: string
} }
interface map {
zoom: number
center: LatLng
}
interface leg { interface leg {
title: string title: string
day_title: string[] day_title: string[]