Skip to content

Commit b6add0c

Browse files
authored
Chat: extend Message type with a custom property (DevExpress#29809)
1 parent 5be296c commit b6add0c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

packages/devextreme/js/ui/chat.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,8 @@ export type Message = {
230230
* @public
231231
*/
232232
isDeleted?: boolean;
233+
234+
[key: string]: any;
233235
};
234236

235237
/** @public */

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33363,6 +33363,8 @@ declare module DevExpress.ui.dxChat {
3336333363
* [descr:Message.isDeleted]
3336433364
*/
3336533365
isDeleted?: boolean;
33366+
33367+
[key: string]: any;
3336633368
};
3336733369
/**
3336833370
* [descr:User]

0 commit comments

Comments
 (0)