@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
24 lines (23 loc) • 812 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Arguments for the `SendMessage` event.
*
*/
export class SendMessageEvent {
/**
* The message which contains the metadata and the user input.
*
* > The Chat does not automatically append the message to its data.
* > For more information, refer to the article on [data binding]({% slug databinding_chat %}).
*/
message;
/**
* @hidden
*/
constructor(message) {
this.message = message;
}
}