fix(actionsheet): add missing optional parameter for hide function (#262)

This commit is contained in:
Ibrahim Hadeed 2016-07-01 13:46:18 -04:00 committed by GitHub
parent 5a14ec01ef
commit 644e999d1e

View File

@ -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; }
}