Skip to content

Commit

Permalink
Fix chat.d.ts conflicts after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
alexslavr committed Nov 4, 2024
1 parent ddc846a commit db2fdd1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/devextreme/js/ui/chat.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export type User = {
* @default undefined
* @public
*/
avatarAlt?: string;
avatarAlt?: string | undefined;
};

/**
Expand Down Expand Up @@ -206,7 +206,7 @@ export interface dxChatOptions extends WidgetOptions<dxChat> {
* @default undefined
* @public
*/
errors?: Array<Alert> | undefined;
alerts?: Array<Alert> | undefined;
/**
* @docid
* @default []
Expand Down Expand Up @@ -244,23 +244,23 @@ export interface dxChatOptions extends WidgetOptions<dxChat> {
* @action
* @public
*/
onMessageEntered?: ((e: MessageEnteredEvent) => void);
onMessageEntered?: ((e: MessageEnteredEvent) => void) | undefined;
/**
* @docid
* @default undefined
* @type_function_param1 e:{ui/chat:TypingStartEvent}
* @action
* @public
*/
onTypingStart?: ((e: TypingEndEvent) => void);
onTypingStart?: ((e: TypingEndEvent) => void) | undefined ;
/**
* @docid
* @default undefined
* @type_function_param1 e:{ui/chat:TypingEndEvent}
* @action
* @public
*/
onTypingEnd?: ((e: TypingEndEvent) => void);
onTypingEnd?: ((e: TypingEndEvent) => void) | undefined;
}

/**
Expand Down

0 comments on commit db2fdd1

Please sign in to comment.