// Type definitions for ngCordova Action Sheet plugin // Project: https://github.com/driftyco/ng-cordova // Definitions by: Phil McCloghry-Laing // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// declare module ngCordova { export interface IActionSheetService { show(options: ShowOptions): ng.IPromise; hide(): ng.IPromise; } export interface ShowOptions { title?: string; buttonLabels?: string[]; addCancelButtonWithLabel?: string; addDestructiveButtonWithLabel?: string; androidEnableCancelButton?: boolean; winphoneEnableCancelButton?: boolean; } }