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
@@ -94,7 +94,7 @@ export interface AuthorizationData {
repo: 'https://github.com/Festify/cordova-spotify-oauth',
install: 'ionic cordova plugin add cordova-spotify-oauth --variable LOCAL_STORAGE_KEY="SpotifyOAuthData"',
installVariables: ['LOCAL_STORAGE_KEY'],
platforms: ['Android', 'iOS']
platforms: ['Android', 'iOS'],
})
@Injectable()
export class SpotifyAuth extends IonicNativePlugin {
@@ -118,7 +118,7 @@ export class SpotifyAuth extends IonicNativePlugin {
* @return {Promise<AuthorizationData>}
*/
@Cordova({
sync: false
sync: false,
})
authorize(cfg: Config): Promise<AuthorizationData> {
return;
@@ -133,7 +133,7 @@ export class SpotifyAuth extends IonicNativePlugin {
* @return {void}
*/
@Cordova({
sync: true
sync: true,
})
forget(): void { }
forget(): void {}
}