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
@@ -1,7 +1,6 @@
import { Injectable } from '@angular/core';
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
/**
* @name Native Storage
* @description Native storage of variables in Android and iOS
@@ -32,7 +31,7 @@ import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
plugin: 'cordova-plugin-nativestorage',
pluginRef: 'NativeStorage',
repo: 'https://github.com/TheCocoaProject/cordova-plugin-nativestorage',
platforms: ['Android', 'Browser', 'iOS', 'macOS', 'Windows']
platforms: ['Android', 'Browser', 'iOS', 'macOS', 'Windows'],
})
@Injectable()
export class NativeStorage extends IonicNativePlugin {
@@ -42,7 +41,7 @@ export class NativeStorage extends IonicNativePlugin {
* @returns {Promise<void>}
*/
@Cordova({
platforms: ['iOS']
platforms: ['iOS'],
})
initWithSuiteName(reference: string): Promise<void> {
return;
@@ -96,5 +95,4 @@ export class NativeStorage extends IonicNativePlugin {
clear(): Promise<any> {
return;
}
}