feat(SW-281): change requests

This commit is contained in:
Fredrik Thorsson
2024-10-25 13:28:46 +02:00
parent b113daf6c1
commit 720dc4c26b
3 changed files with 20 additions and 17 deletions

View File

@@ -1,10 +1,11 @@
import type { Hotel } from "@/types/hotel"
export type HotelListingProps = {
image: Hotel["hotelContent"]["images"]["imageSizes"]["large"]
imageUrl: Hotel["hotelContent"]["images"]["imageSizes"]["large"]
altText: Hotel["hotelContent"]["images"]["metaData"]["altText"]
name: Hotel["name"]
address: Hotel["address"]["streetAddress"]
distanceToCentre: Hotel["location"]["distanceToCentre"]
description: Hotel["hotelContent"]["texts"]["descriptions"]["medium"]
link: string
}