@progress/kendo-angular-buttons
Version:
Buttons Package for Angular
24 lines (23 loc) • 857 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 { ChipListComponent } from './chip-list.component';
import { ChipComponent } from './chip.component';
/**
* Arguments for the `remove` event of the ChipList.
*/
export interface ChipListRemoveEvent {
/**
* The `ChipListComponent` instance.
*/
sender: ChipListComponent;
/**
* The DOM event that triggered the `remove` event of the ChipList.
*/
originalEvent: any;
/**
* The removed `ChipComponent` instance.
*/
removedChip: ChipComponent;
}