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
+4 -6
View File
@@ -203,7 +203,7 @@ export interface HealthData {
plugin: 'cordova-plugin-health',
pluginRef: 'navigator.health',
repo: 'https://github.com/dariosalvi78/cordova-plugin-health',
platforms: ['Android', 'iOS']
platforms: ['Android', 'iOS'],
})
@Injectable()
export class Health extends IonicNativePlugin {
@@ -213,7 +213,7 @@ export class Health extends IonicNativePlugin {
* @return {Promise<boolean>}
*/
@Cordova({
callbackOrder: 'reverse'
callbackOrder: 'reverse',
})
isAvailable(): Promise<boolean> {
return;
@@ -231,7 +231,7 @@ export class Health extends IonicNativePlugin {
* @return {Promise<any>}
*/
@Cordova({
callbackOrder: 'reverse'
callbackOrder: 'reverse',
})
promptInstallFit(): Promise<any> {
return;
@@ -335,9 +335,7 @@ export class Health extends IonicNativePlugin {
* @return {Promise<HealthData[]>}
*/
@Cordova()
queryAggregated(
queryOptionsAggregated: HealthQueryOptionsAggregated
): Promise<HealthData[]> {
queryAggregated(queryOptionsAggregated: HealthQueryOptionsAggregated): Promise<HealthData[]> {
return;
}