UNPKG

@progress/kendo-angular-conversational-ui

Version:

Kendo UI for Angular Conversational UI components

20 lines (19 loc) 871 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { InlineAIPromptOutputAction } from "./output-action.interface"; import { InlineAIPromptOutput } from "./prompt-output.interface"; /** * Represents the arguments for the `outputActionClick` event of the Inline AI Prompt. */ export interface InlineAIPromptOutputActionClickEvent { /** * Contains information about the clicked action. */ action: InlineAIPromptOutputAction; /** * Contains the output associated with the action click event. */ output: InlineAIPromptOutput; }