fix(mobile-messaging): correct return type of submitEvent (#4564)

This commit is contained in:
Olga Koroleva 2023-07-11 19:25:14 +02:00 committed by GitHub
parent e3af183e0c
commit 0527afe935
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -407,7 +407,7 @@ export class MobileMessaging extends AwesomeCordovaNativePlugin {
@Cordova({ @Cordova({
observable: true, observable: true,
}) })
submitEventImmediately(event: CustomEvent): Promise<void> { submitEventImmediately(event: CustomEvent): Observable<any> {
return; return;
} }