diff --git a/src/@ionic-native/plugins/web-intent/index.ts b/src/@ionic-native/plugins/web-intent/index.ts index 381181fae..619b0030b 100644 --- a/src/@ionic-native/plugins/web-intent/index.ts +++ b/src/@ionic-native/plugins/web-intent/index.ts @@ -216,4 +216,14 @@ export class WebIntent extends IonicNativePlugin { getIntent(): Promise { return; } + + /** + * Send a result back to the Intent that started this Activity. + * The data can be passed using 'extras'. + * @returns {Promise} + */ + @Cordova() + sendResult({ extras: {}}): Promise { + return; + } }