UNPKG

@progress/kendo-angular-gantt

Version:
21 lines (20 loc) 895 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 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`]({% slug api_gantt_ganttcomponent %}#toc-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; }