mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-31 18:49:43 +08:00
fix(ble): add missing method "isLocationEnabled" (#3495)
This commit is contained in:
parent
5aa5757795
commit
b4462d5e6c
@ -607,4 +607,15 @@ export class BLE extends IonicNativePlugin {
|
|||||||
bondedDevices(): Promise<any[]> {
|
bondedDevices(): Promise<any[]> {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reports if location services are enabled.
|
||||||
|
* Android only
|
||||||
|
*
|
||||||
|
* @returns {Promise<void>}
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
isLocationEnabled(): Promise<void> {
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user