refactor(lib): run prettier

This commit is contained in:
Daniel Sogl
2020-05-16 14:40:49 +02:00
parent f5133c691d
commit 511a02d50b
326 changed files with 3079 additions and 4092 deletions
@@ -29,7 +29,7 @@ import { Injectable } from '@angular/core';
plugin: 'cordova-plugin-taptic-engine',
pluginRef: 'TapticEngine',
repo: 'https://github.com/EddyVerbruggen/cordova-plugin-taptic-engine',
platforms: ['iOS']
platforms: ['iOS'],
})
@Injectable()
export class TapticEngine extends IonicNativePlugin {
@@ -49,9 +49,7 @@ export class TapticEngine extends IonicNativePlugin {
* @returns {Promise<any>} Returns a promise that resolves on success and rejects on error
*/
@Cordova()
notification(options: {
type: 'success' | 'warning' | 'error';
}): Promise<any> {
notification(options: { type: 'success' | 'warning' | 'error' }): Promise<any> {
return;
}