Skip to content

Commit 5e45675

Browse files
author
marker dao ®
committed
fix(chat.d.ts): Fix typo
1 parent fe49388 commit 5e45675

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ export type SendButtonProperties = {
381381
* @type_function_param1 e:{ui/chat:SendButtonClickEvent}
382382
* @public
383383
*/
384-
onClick: ((e: SendButtonClickEvent) => void);
384+
onClick?: ((e: SendButtonClickEvent) => void);
385385
};
386386

387387
/**

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34194,7 +34194,7 @@ declare module DevExpress.ui.dxChat {
3419434194
/**
3419534195
* [descr:SendButtonProperties.onClick]
3419634196
*/
34197-
onClick: (e: SendButtonClickEvent) => void;
34197+
onClick?: (e: SendButtonClickEvent) => void;
3419834198
};
3419934199
/**
3420034200
* [descr:TextMessage]

0 commit comments

Comments
 (0)