From 644e999d1e7906caf5d2adb761a842c68024d7e3 Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Fri, 1 Jul 2016 13:46:18 -0400 Subject: [PATCH] fix(actionsheet): add missing optional parameter for hide function (#262) --- src/plugins/actionsheet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/actionsheet.ts b/src/plugins/actionsheet.ts index 4ccbbedf1..9019e194a 100644 --- a/src/plugins/actionsheet.ts +++ b/src/plugins/actionsheet.ts @@ -70,5 +70,5 @@ export class ActionSheet { * @returns {Promise} Returns a Promise that resolves when the actionsheet is closed */ @Cordova() - static hide(): Promise { return; } + static hide(options?: any): Promise { return; } }