| 1 | export interface CoffeeShop { |
| 2 | id: string; |
| 3 | name: string; |
| 4 | neighborhood: string; |
| 5 | rating: number; |
| 6 | specialty: string; |
| 7 | imageUrl: string; |
| 8 | isFavorite?: boolean; |
| 9 | } |
| 10 | |
| 11 | const COFFEE_SHOPS: CoffeeShop[] = [ |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected