UNPKG

@hhgtech/hhg-components

Version:
8 lines (7 loc) 311 B
import { GPSType, GeoLocationPermission } from "../interfaces/types"; export type UseGeolocationReturn = { geoLocationPermission: GeoLocationPermission; geoLocationCoordinates: GPSType | null; requestGeoLocation: () => void; }; export declare function useGeolocation(): UseGeolocationReturn;