mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-07 23:03:19 +08:00
Added missing clearWithArgs option to the @Cordova decorator
This commit is contained in:
parent
1da35968de
commit
080c5a19e6
@ -332,7 +332,8 @@ export class EstimoteBeacons {
|
|||||||
*/
|
*/
|
||||||
@Cordova({
|
@Cordova({
|
||||||
observable: true,
|
observable: true,
|
||||||
clearFunction: 'stopRangingBeaconsInRegion'
|
clearFunction: 'stopRangingBeaconsInRegion',
|
||||||
|
clearWithArgs: true
|
||||||
})
|
})
|
||||||
static startRangingBeaconsInRegion(region: BeaconRegion): Observable<any> { return; }
|
static startRangingBeaconsInRegion(region: BeaconRegion): Observable<any> { return; }
|
||||||
|
|
||||||
@ -364,7 +365,8 @@ export class EstimoteBeacons {
|
|||||||
*/
|
*/
|
||||||
@Cordova({
|
@Cordova({
|
||||||
observable: true,
|
observable: true,
|
||||||
clearFunction: 'stopRangingSecureBeaconsInRegion'
|
clearFunction: 'stopRangingSecureBeaconsInRegion',
|
||||||
|
clearWithArgs: true
|
||||||
})
|
})
|
||||||
static startRangingSecureBeaconsInRegion(region: BeaconRegion): Observable<any> { return; }
|
static startRangingSecureBeaconsInRegion(region: BeaconRegion): Observable<any> { return; }
|
||||||
|
|
||||||
@ -396,6 +398,7 @@ export class EstimoteBeacons {
|
|||||||
@Cordova({
|
@Cordova({
|
||||||
observable: true,
|
observable: true,
|
||||||
clearFunction: 'stopMonitoringForRegion',
|
clearFunction: 'stopMonitoringForRegion',
|
||||||
|
clearWithArgs: true,
|
||||||
successIndex: 1,
|
successIndex: 1,
|
||||||
errorIndex: 2
|
errorIndex: 2
|
||||||
})
|
})
|
||||||
@ -426,6 +429,7 @@ export class EstimoteBeacons {
|
|||||||
@Cordova({
|
@Cordova({
|
||||||
observable: true,
|
observable: true,
|
||||||
clearFunction: 'stopSecureMonitoringForRegion',
|
clearFunction: 'stopSecureMonitoringForRegion',
|
||||||
|
clearWithArgs: true,
|
||||||
successIndex: 1,
|
successIndex: 1,
|
||||||
errorIndex: 2
|
errorIndex: 2
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user