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