From c04379af191ca37d2b5b979b08bbbc7e303798a9 Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Fri, 26 Aug 2016 12:21:38 -0400 Subject: [PATCH] refractor(geofence): fix tslint issues --- src/plugins/geofence.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/plugins/geofence.ts b/src/plugins/geofence.ts index d474687b..fc3adc51 100644 --- a/src/plugins/geofence.ts +++ b/src/plugins/geofence.ts @@ -96,7 +96,7 @@ export class Geofence { * @return {Promise} */ @Cordova() - static initialize(): Promise { return }; + static initialize(): Promise { return; }; /** * Adds a new geofence or array of geofences. For geofence object, see above. @@ -104,7 +104,7 @@ export class Geofence { * @return {Promise} */ @Cordova() - static addOrUpdate(geofences: Object | Array): Promise { return }; + static addOrUpdate(geofences: Object | Array): Promise { return; }; /** * Removes a geofence or array of geofences. `geofenceID` corresponds to one or more IDs specified when the @@ -113,7 +113,7 @@ export class Geofence { * @return {Promise} */ @Cordova() - static remove(geofenceId: string | Array): Promise { return }; + static remove(geofenceId: string | Array): Promise { return; }; /** * Removes all geofences. @@ -121,7 +121,7 @@ export class Geofence { * @return {Promise} */ @Cordova() - static removeAll(): Promise { return }; + static removeAll(): Promise { return; }; /** * Returns an array of geofences currently being monitored. @@ -129,7 +129,7 @@ export class Geofence { * @return {Promise>} */ @Cordova() - static getWatched(): Promise { return }; + static getWatched(): Promise { return; }; /** * Called when a geofence is crossed in the direction specified by `TransitType`.