UNPKG

@progress/kendo-angular-conversational-ui

Version:

Kendo UI for Angular Conversational UI components

39 lines (38 loc) 1.13 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { SVGIcon } from "@progress/kendo-svg-icons"; /** * Describes a command shown in the Inline AI Prompt input. */ export interface InlineAIPromptCommand { /** * The unique identifier for the command. */ id: string | number; /** * The text for the command. */ text?: string; /** * The prompt used when the command runs. */ prompt?: string; /** * The font icon name. See [icons list](slug:icons#icons-list). */ icon?: string; /** * The SVG icon. See [SVG icons list](slug:svgicon_list). */ svgIcon?: SVGIcon; /** * The disabled state of the command. */ disabled?: boolean; /** * The nested child commands. */ children?: InlineAIPromptCommand[]; }