@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
22 lines (21 loc) • 834 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';
/**
* Describes the arguments for the `sendMessage` event.
*/
export declare class SendMessageEvent {
/**
* Represents the message that contains the metadata and user input.
*
* > The Chat does not automatically add the message to its data.
* > For more information, see [Data Binding](slug:databinding_chat).
*/
message: Message;
/**
* @hidden
*/
constructor(message: Message);
}