UNPKG

@progress/kendo-angular-conversational-ui

Version:

Kendo UI for Angular Conversational UI components

20 lines (19 loc) 835 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 { /** * The clicked action. */ action: InlineAIPromptOutputAction; /** * The output associated with the action click event. */ output: InlineAIPromptOutput; }