diff --git a/packages/devextreme/ts/dx.all.d.ts b/packages/devextreme/ts/dx.all.d.ts index d3f9e1815f26..484505bbb661 100644 --- a/packages/devextreme/ts/dx.all.d.ts +++ b/packages/devextreme/ts/dx.all.d.ts @@ -9987,6 +9987,9 @@ declare module DevExpress.ui { * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export type ColumnButtonBase = DevExpress.common.grids.ColumnButtonBase; + /** + * [descr:_ui_data_grid_ColumnButtonClickEvent] + */ export type ColumnButtonClickEvent< TRowData = any, TKey = any @@ -9994,7 +9997,13 @@ declare module DevExpress.ui { dxDataGrid, PointerEvent | MouseEvent > & { + /** + * [descr:_ui_data_grid_ColumnButtonClickEvent.row] + */ row?: Row; + /** + * [descr:_ui_data_grid_ColumnButtonClickEvent.column] + */ column?: Column; }; export type ColumnButtonTemplateData = { @@ -27295,6 +27304,9 @@ declare module DevExpress.ui { TRowData = any, TKey = any > = dxTreeListColumnButton; + /** + * [descr:_ui_tree_list_ColumnButtonClickEvent] + */ export type ColumnButtonClickEvent< TRowData = any, TKey = any @@ -27302,7 +27314,13 @@ declare module DevExpress.ui { dxTreeList, PointerEvent | MouseEvent > & { + /** + * [descr:_ui_tree_list_ColumnButtonClickEvent.row] + */ row?: Row; + /** + * [descr:_ui_tree_list_ColumnButtonClickEvent.column] + */ column?: Column; }; export type ColumnButtonTemplateData = {