Skip to content

Commit

Permalink
dx.all.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mpreyskurantov committed Aug 22, 2023
1 parent a575f88 commit 4a816c0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions packages/devextreme/ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9987,14 +9987,23 @@ 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
> = DevExpress.events.NativeEventInfo<
dxDataGrid<TRowData, TKey>,
PointerEvent | MouseEvent
> & {
/**
* [descr:_ui_data_grid_ColumnButtonClickEvent.row]
*/
row?: Row<TRowData, TKey>;
/**
* [descr:_ui_data_grid_ColumnButtonClickEvent.column]
*/
column?: Column<TRowData, TKey>;
};
export type ColumnButtonTemplateData<TRowData = any, TKey = any> = {
Expand Down Expand Up @@ -27295,14 +27304,23 @@ declare module DevExpress.ui {
TRowData = any,
TKey = any
> = dxTreeListColumnButton<TRowData, TKey>;
/**
* [descr:_ui_tree_list_ColumnButtonClickEvent]
*/
export type ColumnButtonClickEvent<
TRowData = any,
TKey = any
> = DevExpress.events.NativeEventInfo<
dxTreeList<TRowData, TKey>,
PointerEvent | MouseEvent
> & {
/**
* [descr:_ui_tree_list_ColumnButtonClickEvent.row]
*/
row?: Row<TRowData, TKey>;
/**
* [descr:_ui_tree_list_ColumnButtonClickEvent.column]
*/
column?: Column<TRowData, TKey>;
};
export type ColumnButtonTemplateData<TRowData = any, TKey = any> = {
Expand Down

0 comments on commit 4a816c0

Please sign in to comment.