Skip to content

Commit

Permalink
fix(actionsheet): add missing optional parameter for hide function (#262
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ihadeed committed Jul 1, 2016
1 parent 5a14ec0 commit 644e999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/actionsheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ export class ActionSheet {
* @returns {Promise} Returns a Promise that resolves when the actionsheet is closed
*/
@Cordova()
static hide(): Promise<any> { return; }
static hide(options?: any): Promise<any> { return; }
}

0 comments on commit 644e999

Please sign in to comment.