Skip to content

Commit

Permalink
fix: jQuery integration event types are missing (#29111) (#29144)
Browse files Browse the repository at this point in the history
  • Loading branch information
VasilyStrelyaev authored Feb 28, 2025
1 parent aad747e commit dcf3c88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/devextreme/js/integration/jquery.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ declare module '../core/utils/deferred' {
interface PromiseType<T> extends JQueryPromise<T> { }
}

declare module '../common/core/events' {
declare module '../events/events.types' {
interface EventType extends JQueryEventObject {
cancel?: boolean;
}
Expand Down
6 changes: 6 additions & 0 deletions packages/devextreme/ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7656,6 +7656,12 @@ declare module DevExpress.events {
* @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 interface EventType {}
/**
* @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.
*/
interface EventType extends JQueryEventObject {
cancel?: boolean;
}
/**
* [descr:events.triggerHandler(element, event)]
* @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.
Expand Down

0 comments on commit dcf3c88

Please sign in to comment.