UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

24 lines (23 loc) 691 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { TaskModuleContinueResponse, TaskModuleMessageResponse } from '../taskModule'; import { MessagingExtensionResult } from './messagingExtensionResult'; /** * Represents the response of a messaging extension action. */ export interface MessagingExtensionActionResponse { /** * The task module response. */ task?: TaskModuleContinueResponse | TaskModuleMessageResponse; /** * The result of the compose extension. */ composeExtension?: MessagingExtensionResult; /** * Cache information for the response. */ cacheInfo?: unknown; }