@progress/kendo-angular-menu
Version:
Kendo UI Angular Menu component
27 lines (26 loc) • 931 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ContextMenuComponent } from './context-menu.component';
/**
* Represents the arguments for the `open` and `close` events of the ContextMenu.
*/
export declare class ContextMenuEvent {
/**
* Specifies the target element for which the ContextMenu is opened.
*/
target: any;
/**
* Specifies the ContextMenuComponent that triggered the event.
*/
sender: ContextMenuComponent;
/**
* Specifies the item data of the event.
*/
item: any;
/**
* Specifies the item index of the event.
*/
index: string;
}