chore(package): bump dependencies and lint rules

This commit is contained in:
Daniel
2018-03-16 22:04:01 +01:00
parent 7547a94c80
commit 21ad4734fa
178 changed files with 10565 additions and 4194 deletions
@@ -33,13 +33,14 @@ import { Injectable } from '@angular/core';
})
@Injectable()
export class TapticEngine extends IonicNativePlugin {
/**
* Use selection feedback generators to indicate a change in selection.
* @returns {Promise<any>} Returns a promise that resolves on success and rejects on error
*/
@Cordova()
selection(): Promise<any> { return; }
selection(): Promise<any> {
return;
}
/**
* Use this to indicate success/failure/warning to the user.
@@ -48,7 +49,9 @@ export class TapticEngine extends IonicNativePlugin {
* @returns {Promise<any>} Returns a promise that resolves on success and rejects on error
*/
@Cordova()
notification(options: { type: string }): Promise<any> { return; }
notification(options: { type: string }): Promise<any> {
return;
}
/**
* Use this to indicate success/failure/warning to the user.
@@ -57,6 +60,7 @@ export class TapticEngine extends IonicNativePlugin {
* @returns {Promise<any>} Returns a promise that resolves on success and rejects on error
*/
@Cordova()
impact(options: { style: string }): Promise<any> { return; }
impact(options: { style: string }): Promise<any> {
return;
}
}