@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
21 lines (20 loc) • 932 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import type { GanttComponent } from '../../gantt.component';
import { TaskEditItem } from './task-edit-event.interface';
/**
* Contains the event data for the [`taskDelete`](https://www.telerik.com/kendo-angular-ui/components/gantt/api/ganttcomponent#taskdelete) event.
*/
export interface TaskDeleteEvent {
/**
* Holds the item for the delete request.
* You can access the parent item through the `parent` property to update all ancestors.
*/
item: TaskEditItem;
/**
* Holds the `GanttComponent` instance.
*/
sender: GanttComponent;
}