2025-01-05 14:16:31 -07:00
|
|
|
export interface Business {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
2025-01-06 21:25:15 -07:00
|
|
|
address: string;
|
|
|
|
|
phone: string;
|
|
|
|
|
description: string;
|
2025-01-05 14:16:31 -07:00
|
|
|
website?: string;
|
|
|
|
|
source: string;
|
2025-01-06 21:25:15 -07:00
|
|
|
rating: number;
|
|
|
|
|
location: {
|
2025-01-05 14:16:31 -07:00
|
|
|
lat: number;
|
|
|
|
|
lng: number;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type BusinessData = Business;
|