UNPKG

@progress/kendo-angular-gantt

Version:
22 lines (21 loc) 926 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'; /** * The event data of the [`taskDelete`]({% slug api_gantt_ganttcomponent %}#toc-taskdelete) event. */ export interface TaskDeleteEvent { /** * The item associated with the delete request. * The parent item is accessible through the `parent` property, * and allows traversing all ancestors that need to be updated. */ item: TaskEditItem; /** * The GanttComponent instance. */ sender: GanttComponent; }