/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import type { GridComponent } from "../grid.component"; /** * Provides the arguments for the [`edit`](https://www.telerik.com/kendo-angular-ui/components/grid/api/gridcomponent#edit) event. */ export interface EditEvent { /** * The data item for the row. */ dataItem: any; /** * Indicates if the data item is new or existing. */ isNew: boolean; /** * The data row index for the operation. */ rowIndex: number; /** * The `GridComponent` instance that triggered the event. */ sender: GridComponent; }