cordova-background-geolocation-lt
Version:
Cordova / Capacitor Background Geolocation. The most sophisticated, cross-platform location-tracking and geofencing plugin with battery-conscious motion-detection intelligence.
34 lines (32 loc) • 614 B
TypeScript
declare module "cordova-background-geolocation-lt" {
/**
* Simple device information, much simpler than other 3rd party libraries.
*
* @example
* ```typescript
* let deviceInfo = await BackgroundGeolocation.getDeviceInfo();
* ```
*/
interface DeviceInfo {
/**
* Device model
*/
model:string;
/**
* Device manufacturer.
*/
manufacturer:string;
/**
* OS Version code.
*/
version:string;
/**
* Platform: iOS or Android
*/
platform:string;
/**
* Development framework (react-native or cordova)
*/
framework:string;
}
}