docs(action-sheet): add missing param interface

This commit is contained in:
Daniel 2018-04-08 18:26:01 +02:00
parent 1c03c3ff3c
commit 5648bfc70f

View File

@ -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<any>} Returns a Promise that resolves when the actionsheet is closed
*/
@Cordova()
hide(options?: any): Promise<any> {
hide(options?: ActionSheetOptions): Promise<any> {
return;
}
}