/// import { StateOrName } from '@uirouter/angularjs'; import { IComponentController } from 'angular'; export default class MflyDropdownMenuAction implements IComponentController { private $attrs; private $element; private $rootScope; actionHref: string; actionHrefTarget: string; actionSref: { state: StateOrName; params: {}; options: {}; }; disable: boolean; action?: () => void; private parent; constructor($attrs: ng.IAttributes, $element: JQuery, $rootScope: JSUIRootScope); $onInit(): void; keyPress: ($event: any) => void; performAction(): void; }