mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-04-13 00:00:10 +08:00
Revert "chore(package): bump dependencies and lint rules"
This reverts commit 21ad4734fa.
This commit is contained in:
@@ -33,14 +33,13 @@ 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.
|
||||
@@ -49,9 +48,7 @@ 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.
|
||||
@@ -60,7 +57,6 @@ 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; }
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user