From 79d99b8a1d8daa21c1979c3ade84c033be2e59f1 Mon Sep 17 00:00:00 2001 From: Olga Koroleva Date: Mon, 22 Jul 2024 16:58:18 +0200 Subject: [PATCH] minor update --- .../plugins/mobile-messaging/index.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/@awesome-cordova-plugins/plugins/mobile-messaging/index.ts b/src/@awesome-cordova-plugins/plugins/mobile-messaging/index.ts index 22ba2deee5..29572daab3 100644 --- a/src/@awesome-cordova-plugins/plugins/mobile-messaging/index.ts +++ b/src/@awesome-cordova-plugins/plugins/mobile-messaging/index.ts @@ -631,7 +631,7 @@ export class MobileMessaging extends AwesomeCordovaNativePlugin { @Cordova() fetchInboxMessages(token: string, externalUserId: string, filterOptions: MMInboxFilterOptions): Promise { return; - }; + } /** * Fetch mobile inbox without token from the server. @@ -645,7 +645,7 @@ export class MobileMessaging extends AwesomeCordovaNativePlugin { @Cordova() fetchInboxMessagesWithoutToken(externalUserId: string, filterOptions: MMInboxFilterOptions): Promise { return; - }; + } /** * Asynchronously marks inbox messages as seen @@ -658,6 +658,5 @@ export class MobileMessaging extends AwesomeCordovaNativePlugin { @Cordova() setInboxMessagesSeen(externalUserId: string, messageIds: string[]): Promise { return; - }; - + } }