UNPKG

react-hook-geolocation

Version:
14 lines (12 loc) 448 B
declare module "react-hook-geolocation" { export interface EnrichedGeolocationCoordinates extends GeolocationCoordinates { timestamp: GeolocationPosition["timestamp"] | null; error: GeolocationPositionError | null; } export default function useGeolocation( positionOptions?: PositionOptions, callback?: (geolocation: EnrichedGeolocationCoordinates) => void, isEnabled?: boolean ): EnrichedGeolocationCoordinates; }