fix(SW-1168) Fixed comments for map

This commit is contained in:
Pontus Dreij
2024-12-12 20:30:41 +01:00
parent e05372f4d8
commit e1bc7c25e0
4 changed files with 23 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
import { ReactElement } from "react"
import type { ReactElement } from "react"
import type { HotelPin } from "@/types/components/hotelReservation/selectHotel/map"
import type { Coordinates } from "@/types/components/maps/coordinates"
@@ -11,6 +11,6 @@ export interface InteractiveMapProps {
hotelPins?: HotelPin[]
mapId: string
closeButton: ReactElement
onMapLoad?: () => void
onTilesLoaded?: () => void
onActivePoiChange?: (poi: PointOfInterest["name"] | null) => void
}