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
@@ -203,7 +203,7 @@ export class DefaultMessageStorage {
plugin: 'com-infobip-plugins-mobilemessaging',
pluginRef: 'MobileMessaging',
repo: 'https://github.com/infobip/mobile-messaging-cordova-plugin',
platforms: ['Android', 'iOS']
platforms: ['Android', 'iOS'],
})
@Injectable()
export class MobileMessaging extends IonicNativePlugin {
@@ -215,10 +215,7 @@ export class MobileMessaging extends IonicNativePlugin {
* @param {Function} onInitError. Error callback
*/
@Cordova({ sync: true })
init(
config: Configuration,
onInitError?: (error: MobileMessagingError) => void
) {
init(config: Configuration, onInitError?: (error: MobileMessagingError) => void) {
return;
}
@@ -229,14 +226,14 @@ export class MobileMessaging extends IonicNativePlugin {
* @param event
*/
@Cordova({
observable: true
observable: true,
})
register(event: Event): Observable<Message> {
return;
}
@Cordova({
observable: true
observable: true,
})
on(event: Event): Observable<Message> {
return;
@@ -250,14 +247,14 @@ export class MobileMessaging extends IonicNativePlugin {
* @param {Function} handler will be unregistered from event
*/
@Cordova({
observable: true
observable: true,
})
unregister(event: Event): Observable<Message> {
return;
}
@Cordova({
observable: true
observable: true,
})
off(event: Event): Observable<Message> {
return;
@@ -279,13 +276,12 @@ export class MobileMessaging extends IonicNativePlugin {
* }
*/
@Cordova({
sync: true
sync: true,
})
submitEvent(event: CustomEvent): void {
return;
}
/**
* Sends an event to the server immediately.
* You have to handle possible connection or server errors, do retries yourself.
@@ -304,7 +300,7 @@ export class MobileMessaging extends IonicNativePlugin {
* @param {Function} callback will be called on result, you have to handle error and do retries yourself
*/
@Cordova({
observable: true
observable: true,
})
submitEventImmediately(event: CustomEvent): Promise<void> {
return;
@@ -380,10 +376,7 @@ export class MobileMessaging extends IonicNativePlugin {
* @param {Boolean} primary or not
*/
@Cordova()
setInstallationAsPrimary(
pushRegistrationId: string,
primary: boolean
): Promise<any> {
setInstallationAsPrimary(pushRegistrationId: string, primary: boolean): Promise<any> {
return;
}