/** * Full package barrel — backward compatible default import. * * Prefer subpath imports for smaller JS bundles: * `react-native-geolocation-pro/pedometer` * `react-native-geolocation-pro/geolocation` * etc. */ export * from './subsystems/core'; export * from './subsystems/geolocation'; export * from './subsystems/pedometer'; export * from './subsystems/geofence'; export * from './subsystems/activity'; export * from './subsystems/sync'; export * from './subsystems/diagnostics'; export { SUBSYSTEMS, NATIVE_LINKING_NOTE } from './subsystems/registry'; export type { SubsystemId } from './subsystems/registry'; // Default export = Geolocation (unchanged) export { default } from './Geolocation';