diff --git a/src/plugins/geofence.ts b/src/plugins/geofence.ts index d474687b7..fc3adc515 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`.