@gabriel-sisjr/react-native-background-location
Version:
React Native library for background location tracking using TurboModules. Track user location even when the app is minimized or in the background.
24 lines (19 loc) • 650 B
text/typescript
/**
* React Hooks for background location tracking
*
* @module hooks
*/
export { useLocationPermissions } from './useLocationPermissions';
export type { UseLocationPermissionsResult } from '../types';
export { useBackgroundLocation } from './useBackgroundLocation';
export type {
UseBackgroundLocationResult,
UseLocationTrackingOptions,
} from '../types';
export { useLocationTracking } from './useLocationTracking';
export type { UseLocationTrackingResult } from './useLocationTracking';
export { useLocationUpdates } from './useLocationUpdates';
export type {
UseLocationUpdatesOptions,
UseLocationUpdatesResult,
} from '../types';