File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -290,6 +290,8 @@ export type TextMessage<TAttachment extends Attachment = Attachment> = MessageBa
290290 * @public
291291 */
292292 isEdited ?: boolean ;
293+
294+ [ key : string ] : any ;
293295} ;
294296
295297/**
@@ -353,7 +355,7 @@ export interface dxChatOptions extends WidgetOptions<dxChat> {
353355 * @type dxFileUploaderOptions
354356 * @public
355357 */
356- fileUploaderOptions ?: Omit < FileUploaderOptions , 'dialogTrigger' | 'showFileList' | 'uploadMode ' > ;
358+ fileUploaderOptions ?: Omit < FileUploaderOptions , 'dialogTrigger' | 'showFileList' | 'uploadMode' > ;
357359 /**
358360 * @docid
359361 * @default true
@@ -494,7 +496,7 @@ export interface dxChatOptions extends WidgetOptions<dxChat> {
494496 * @action
495497 * @public
496498 */
497- onTypingStart ?: ( ( e : TypingEndEvent ) => void ) | undefined ;
499+ onTypingStart ?: ( ( e : TypingStartEvent ) => void ) | undefined ;
498500 /**
499501 * @docid
500502 * @default undefined
Original file line number Diff line number Diff line change @@ -11313,7 +11313,7 @@ declare module DevExpress.ui {
1131311313 */
1131411314 fileUploaderOptions?: Omit<
1131511315 DevExpress.ui.dxFileUploader.Properties,
11316- 'dialogTrigger' | 'showFileList' | 'uploadMode '
11316+ 'dialogTrigger' | 'showFileList' | 'uploadMode'
1131711317 >;
1131811318 /**
1131911319 * [descr:dxChatOptions.focusStateEnabled]
@@ -11430,7 +11430,7 @@ declare module DevExpress.ui {
1143011430 * [descr:dxChatOptions.onTypingStart]
1143111431 */
1143211432 onTypingStart?:
11433- | ((e: DevExpress.ui.dxChat.TypingEndEvent ) => void)
11433+ | ((e: DevExpress.ui.dxChat.TypingStartEvent ) => void)
1143411434 | undefined;
1143511435 /**
1143611436 * [descr:dxChatOptions.onTypingEnd]
@@ -34044,6 +34044,8 @@ declare module DevExpress.ui.dxChat {
3404434044 * [descr:TextMessage.isEdited]
3404534045 */
3404634046 isEdited?: boolean;
34047+
34048+ [key: string]: any;
3404734049 };
3404834050 /**
3404934051 * [descr:User]
You can’t perform that action at this time.
0 commit comments