Perplexica/src/lib/types.ts

16 lines
266 B
TypeScript
Raw Normal View History

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