diff --git a/src/@ionic-native/plugins/web-intent/index.ts b/src/@ionic-native/plugins/web-intent/index.ts index b74f37507..f435afa19 100644 --- a/src/@ionic-native/plugins/web-intent/index.ts +++ b/src/@ionic-native/plugins/web-intent/index.ts @@ -154,12 +154,13 @@ export class WebIntent extends IonicNativePlugin { } /** + * Returns the content of the intent used whenever the application activity is launched * @returns {Observable} */ @Cordova({ observable: true }) - onNewIntent(): Observable { + onIntent(): Observable { return; } @@ -202,18 +203,6 @@ export class WebIntent extends IonicNativePlugin { @Cordova({ sync: true }) unregisterBroadcastReceiver(): void {} - /** - * Returns the content of the intent used whenever the application activity is launched - */ - @Cordova({ sync: true }) - onIntent(): void {} - - /** - * - */ - @Cordova({ sync: true }) - onActivityResult(): void {} - /** * @returns {Promise} */