/** * Fires after editing has been canceled and the editor's value has been reset. */ export interface CancelEdit { /** * The row index of the edited grid */ rowIndex: number; } export default CancelEdit;