Files
web/types/components/imageGallery.ts
2024-11-14 07:53:39 +01:00

10 lines
181 B
TypeScript

import type { GalleryImage } from "@/types/hotel"
export type ImageGalleryProps = {
images?: GalleryImage[]
title: string
fill?: boolean
width?: number
height?: number
}