Skip to content

Commit

Permalink
fix(webintent): add type param. Fixes #564
Browse files Browse the repository at this point in the history
  • Loading branch information
mlynch committed Sep 23, 2016
1 parent 4292959 commit a0b6b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/webintent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class WebIntent {
}

@Cordova()
static startActivity(options: { action: any, url: string }): Promise<any> { return; }
static startActivity(options: { action: any, url: string, type?: string }): Promise<any> { return; }

@Cordova()
static hasExtra(extra: any): Promise<any> { return; }
Expand Down

0 comments on commit a0b6b10

Please sign in to comment.