@transistorsoft/capacitor-background-geolocation
Version:
The most sophisticated cross platform Capacitor background location tracking & geofencing module with battery-conscious motion-detection intelligence
11 lines (8 loc) • 616 B
TypeScript
// Re-export ALL shared types so consumers can do:
// import BackgroundGeolocation, { Config, Location, GeofenceEvent } from '@transistorsoft/capacitor-background-geolocation';
export * from '@transistorsoft/background-geolocation-types';
// Import the canonical BackgroundGeolocation interface from the shared types package.
import type { BackgroundGeolocation as SharedBackgroundGeolocation } from '@transistorsoft/background-geolocation-types';
// Declare the default export as the shared interface type.
declare const BackgroundGeolocation: SharedBackgroundGeolocation;
export default BackgroundGeolocation;