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
@@ -25,11 +25,10 @@ import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
repo: 'https://github.com/EddyVerbruggen/cordova-plugin-googleplus',
install: 'ionic cordova plugin add cordova-plugin-googleplus --variable REVERSED_CLIENT_ID=myreversedclientid',
installVariables: ['REVERSED_CLIENT_ID'],
platforms: ['Android', 'iOS']
platforms: ['Android', 'iOS'],
})
@Injectable()
export class GooglePlus extends IonicNativePlugin {
/**
* The login function walks the user through the Google Auth process.
* @param options
@@ -37,7 +36,7 @@ export class GooglePlus extends IonicNativePlugin {
*/
@Cordova({
successIndex: 1,
errorIndex: 2
errorIndex: 2,
})
login(options: any): Promise<any> {
return;
@@ -79,5 +78,4 @@ export class GooglePlus extends IonicNativePlugin {
getSigningCertificateFingerprint(): Promise<any> {
return;
}
}