Merge remote-tracking branch 'origin/master' into v5

This commit is contained in:
Daniel
2018-04-13 12:34:16 +02:00
4 changed files with 48 additions and 39 deletions
+4 -12
View File
@@ -505,9 +505,7 @@ export class IBeacon extends IonicNativePlugin {
* native layer acknowledged the dispatch of the monitoring request.
*/
@Cordova({ otherPromise: true })
startMonitoringForRegion(region: BeaconRegion): Promise<string> {
return;
}
startMonitoringForRegion(region: Region): Promise<string> { return; }
/**
* Stop monitoring the specified region. It is valid to call
@@ -524,9 +522,7 @@ export class IBeacon extends IonicNativePlugin {
* native layer acknowledged the dispatch of the request to stop monitoring.
*/
@Cordova({ otherPromise: true })
stopMonitoringForRegion(region: BeaconRegion): Promise<void> {
return;
}
stopMonitoringForRegion(region: Region): Promise<void> { return; }
/**
* Request state the for specified region. When result is ready
@@ -561,9 +557,7 @@ export class IBeacon extends IonicNativePlugin {
* native layer acknowledged the dispatch of the monitoring request.
*/
@Cordova({ otherPromise: true })
startRangingBeaconsInRegion(region: BeaconRegion): Promise<void> {
return;
}
startRangingBeaconsInRegion(region: Region): Promise<void> { return; }
/**
* Stop ranging the specified region. It is valid to call
@@ -580,9 +574,7 @@ export class IBeacon extends IonicNativePlugin {
* native layer acknowledged the dispatch of the request to stop monitoring.
*/
@Cordova({ otherPromise: true })
stopRangingBeaconsInRegion(region: BeaconRegion): Promise<void> {
return;
}
stopRangingBeaconsInRegion(region: Region): Promise<void> { return; }
/**
* Queries the native layer to determine the current authorization in effect.