UNPKG

react-native-android-background-geolocation

Version:

A react-native geolocation module for Android, which can run in the foreground and background even the app is terminated.

12 lines (10 loc) 263 B
// @flow export type Priority = 10001 | 10002 | 10003 | 10004; export type Option = {| priority: Priority, stopOnTerminate?: boolean, interval: number, fastestInterval: number, distanceFilter: number, |} export type Unsubscribe = () => void;