add directory item type

This commit is contained in:
padreug 2025-02-02 17:17:15 +01:00
parent 8b88a7f66f
commit ee832d0f96

13
src/types/directory.ts Normal file
View file

@ -0,0 +1,13 @@
export interface DirectoryItem {
id: string
name: string
category: 'restaurant' | 'taxi' | 'ferry' | 'retail' | 'other'
description: string
address?: string
contact?: string
coordinates?: {
lat: number
lng: number
}
imageUrl?: string
}