From a0b6b1084b013fb932d7bcfe36a3f571774b9836 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Thu, 22 Sep 2016 20:37:36 -0500 Subject: [PATCH] fix(webintent): add type param. Fixes #564 --- src/plugins/webintent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/webintent.ts b/src/plugins/webintent.ts index a5b4b95d8f..568a33e8e2 100644 --- a/src/plugins/webintent.ts +++ b/src/plugins/webintent.ts @@ -35,7 +35,7 @@ export class WebIntent { } @Cordova() - static startActivity(options: { action: any, url: string }): Promise { return; } + static startActivity(options: { action: any, url: string, type?: string }): Promise { return; } @Cordova() static hasExtra(extra: any): Promise { return; }