const locationManager: LocationManager
interface Coordinate { latitude: number; longitude: number; } interface LocationManager { isLocationServicesEnabled(): Promise<boolean>; requestCurrentLocation(): Promise<Coordinate>; }
Last updated 11 months ago