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
+3 -5
View File
@@ -22,11 +22,10 @@ import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
plugin: 'cordova-plugin-market',
pluginRef: 'cordova.plugins.market',
repo: 'https://github.com/xmartlabs/cordova-plugin-market',
platforms: ['Android', 'iOS']
platforms: ['Android', 'iOS'],
})
@Injectable()
export class Market extends IonicNativePlugin {
/**
* Opens an app in Google Play / App Store
* @param appId {string} Package name
@@ -35,7 +34,7 @@ export class Market extends IonicNativePlugin {
@Cordova({
callbackStyle: 'object',
successName: 'success',
errorName: 'failure'
errorName: 'failure',
})
open(appId: string): Promise<any> {
return;
@@ -50,10 +49,9 @@ export class Market extends IonicNativePlugin {
callbackStyle: 'object',
successName: 'success',
errorName: 'failure',
platforms: ['Android']
platforms: ['Android'],
})
search(keyword: string): Promise<any> {
return;
}
}