Skip to content

Commit

Permalink
fix(chat.d.ts): Replace NativeEventInfo with EventInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
marker dao ® committed Oct 28, 2024
1 parent b9fa0f4 commit d950330
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/devextreme/js/ui/chat.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ export type TypingStartEvent = NativeEventInfo<dxChat, UIEvent & { target: HTMLI
* @docid _ui_chat_TypingEndEvent
* @public
* @type object
* @inherits NativeEventInfo
* @inherits EventInfo
*/
export type TypingEndEvent = NativeEventInfo<dxChat> & {
export type TypingEndEvent = EventInfo<dxChat> & {
/** @docid _ui_chat_TypingEndEvent.user */
readonly user?: User;
};
Expand Down
2 changes: 1 addition & 1 deletion packages/devextreme/ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9530,7 +9530,7 @@ declare module DevExpress.ui {
/**
* [descr:_ui_chat_TypingEndEvent]
*/
export type TypingEndEvent = DevExpress.events.NativeEventInfo<dxChat> & {
export type TypingEndEvent = DevExpress.events.EventInfo<dxChat> & {
/**
* [descr:_ui_chat_TypingEndEvent.user]
*/
Expand Down

0 comments on commit d950330

Please sign in to comment.