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