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; - }; - + } }