| 1 | import type { MapLayers } from '@/types'; |
| 2 | |
| 3 | interface InvestmentsMapLike { |
| 4 | enableLayer: (layer: keyof MapLayers) => void; |
| 5 | setCenter: (lat: number, lon: number, zoom: number) => void; |
| 6 | } |
| 7 | |
| 8 | export function focusInvestmentOnMap( |
| 9 | map: InvestmentsMapLike | null, |
nothing calls this directly
no outgoing calls
no test coverage detected