@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
23 lines (22 loc) • 846 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Message } from './message.interface';
/**
* Arguments for the `SendMessage` event.
*
*/
export declare 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: Message;
/**
* @hidden
*/
constructor(message: Message);
}