@progress/kendo-angular-navigation
Version:
Kendo UI Navigation for Angular
19 lines (18 loc) • 723 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 { ActionSheetItem } from './actionsheet-item.interface';
/**
* Arguments for the `itemClick` event of the ActionSheet.
*/
export declare class ActionSheetItemClickEvent {
/**
* The ActionSheet item that was clicked.
*/
item: ActionSheetItem;
/**
* The DOM event that triggered the `itemClick` event.
*/
originalEvent: any;
}