UNPKG

@progress/kendo-angular-conversational-ui

Version:

Kendo UI for Angular Conversational UI components

26 lines (25 loc) 809 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents the Chat Suggestions that can be displayed above the MessageBox. */ export interface ChatSuggestion { /** * Unique identifier for the suggestion. */ id: string | number; /** * Display text for the suggestion. */ text: string; /** * Optional description for the suggestion. */ description?: string; /** * Whether the suggestion is disabled. */ disabled?: boolean; }