Skip to content

Commit

Permalink
update d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmakarov committed Sep 4, 2023
1 parent 04bfffa commit 7142471
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions js/common/grids.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2748,7 +2748,7 @@ export type RowInsertingInfo<TRowData = any> = {
* @docid
* @type Promise<void>
*/
cancel: boolean | PromiseLike<void>;
cancel: boolean | PromiseLike<boolean> | PromiseLike<void>;
};

/**
Expand Down Expand Up @@ -2795,7 +2795,7 @@ export interface RowRemovingInfo<TRowData = any, TKey = any> {
* @docid
* @type boolean|Promise<void>
*/
cancel: boolean | PromiseLike<void>;
cancel: boolean | PromiseLike<boolean> | PromiseLike<void>;
}

/**
Expand Down Expand Up @@ -2837,7 +2837,7 @@ export interface RowUpdatingInfo<TRowData = any, TKey = any> {
* @docid
* @type boolean|Promise<void>
*/
cancel: boolean | PromiseLike<void>;
cancel: boolean | PromiseLike<boolean> | PromiseLike<void>;
}

/**
Expand Down
6 changes: 3 additions & 3 deletions ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4184,7 +4184,7 @@ declare module DevExpress.common.grids {
/**
* [descr:RowInsertingInfo.cancel]
*/
cancel: boolean | PromiseLike<void>;
cancel: boolean | PromiseLike<boolean> | PromiseLike<void>;
};
/**
* [descr:RowKeyInfo]
Expand Down Expand Up @@ -4230,7 +4230,7 @@ declare module DevExpress.common.grids {
/**
* [descr:RowRemovingInfo.cancel]
*/
cancel: boolean | PromiseLike<void>;
cancel: boolean | PromiseLike<boolean> | PromiseLike<void>;
}
/**
* [descr:RowUpdatedInfo]
Expand Down Expand Up @@ -4270,7 +4270,7 @@ declare module DevExpress.common.grids {
/**
* [descr:RowUpdatingInfo.cancel]
*/
cancel: boolean | PromiseLike<void>;
cancel: boolean | PromiseLike<boolean> | PromiseLike<void>;
}
/**
* [descr:RowValidatingInfo]
Expand Down

0 comments on commit 7142471

Please sign in to comment.