UNPKG

reactuals

Version:

A useful package providing a collection of 50+ React hooks and utilities to simplify React development.

7 lines (6 loc) 226 B
export interface GeoLocationState { latitude: number | null; longitude: number | null; error: GeolocationPositionError | null; } export declare function useGeoLocation(options?: PositionOptions): GeoLocationState;