add directory item type
This commit is contained in:
parent
8b88a7f66f
commit
ee832d0f96
1 changed files with 13 additions and 0 deletions
13
src/types/directory.ts
Normal file
13
src/types/directory.ts
Normal 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
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue