From 5648bfc70fa6908f390627b89693d7426f2afd2c Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 8 Apr 2018 18:26:01 +0200 Subject: [PATCH] docs(action-sheet): add missing param interface --- src/@ionic-native/plugins/action-sheet/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/action-sheet/index.ts b/src/@ionic-native/plugins/action-sheet/index.ts index 3eb5d1ff5..987a24c84 100644 --- a/src/@ionic-native/plugins/action-sheet/index.ts +++ b/src/@ionic-native/plugins/action-sheet/index.ts @@ -127,11 +127,11 @@ export class ActionSheet extends IonicNativePlugin { /** * Programmatically hide the native ActionSheet - * @param {any} options? + * @param {ActionSheetOptions} [options] Options See table below * @returns {Promise} Returns a Promise that resolves when the actionsheet is closed */ @Cordova() - hide(options?: any): Promise { + hide(options?: ActionSheetOptions): Promise { return; } }