fix(SW-96): use import type

This commit is contained in:
Chuma McPhoy
2024-08-26 13:24:19 +02:00
parent bef58ab0a3
commit 879e89cf61
6 changed files with 6 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
import { ImageItem } from "@/types/components/lightbox/lightbox"
import { Hotel } from "@/types/hotel"
import type { ImageItem } from "@/types/components/lightbox/lightbox"
import type { Hotel } from "@/types/hotel"
export function extractHotelImages(hotelData: Hotel): ImageItem[] {
const images: ImageItem[] = []