Skip to content

Commit 27efc5d

Browse files
fix: jQuery integration event types are missing (DevExpress#29111)
1 parent c8989a3 commit 27efc5d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

packages/devextreme/js/integration/jquery.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ declare module '../core/utils/deferred' {
9292
interface PromiseType<T> extends JQueryPromise<T> { }
9393
}
9494

95-
declare module '../common/core/events' {
95+
declare module '../events/events.types' {
9696
interface EventType extends JQueryEventObject {
9797
cancel?: boolean;
9898
}

packages/devextreme/ts/dx.all.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7658,6 +7658,12 @@ declare module DevExpress.events {
76587658
* @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.
76597659
*/
76607660
export interface EventType {}
7661+
/**
7662+
* @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.
7663+
*/
7664+
interface EventType extends JQueryEventObject {
7665+
cancel?: boolean;
7666+
}
76617667
/**
76627668
* [descr:events.triggerHandler(element, event)]
76637669
* @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.

0 commit comments

Comments
 (0)