UNPKG

@progress/kendo-angular-navigation

Version:

Kendo UI Navigation for Angular

32 lines (31 loc) 1.07 kB
/**----------------------------------------------------------------------------------------- * 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 '../../common/preventable-event'; import { BottomNavigationComponent } from '../bottomnavigation.component'; /** * Arguments for the `select` event of the BottomNavigation. */ export declare class BottomNavigationSelectEvent extends PreventableEvent { /** * The index of the selected item in the `items` collection. */ index: number; /** * The selected BottomNavigation item. */ item: any; /** * The DOM event that triggered the selection. */ originalEvent: any; /** * The BottomNavigation that triggered the event. */ sender: BottomNavigationComponent; /** * @hidden */ constructor(args: any); }