@progress/kendo-angular-menu
Version:
Kendo UI Angular Menu component
28 lines (27 loc) • 1.03 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { PreventableEvent } from '../preventable-event';
import { ContextMenuComponent } from './context-menu.component';
/**
* Represents the arguments for the `popupOpen` and `popupClose` events of the ContextMenu.
*/
export declare class ContextMenuPopupEvent extends PreventableEvent {
/**
* Specifies the target element for which the ContextMenu is opened.
*/
target: any;
/**
* Specifies the DOM event that started the action.
*/
originalEvent: any;
/**
* Specifies the ContextMenuComponent that triggered the event.
*/
sender: ContextMenuComponent;
/**
* @hidden
*/
constructor(args: any);
}