@microsoft/agents-hosting-extensions-teams
Version:
Microsoft 365 Agents SDK for JavaScript. Teams extensions
19 lines (18 loc) • 475 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { MessagingExtensionResult } from './messagingExtensionResult';
/**
* Represents the response of a messaging extension.
*/
export interface MessagingExtensionResponse {
/**
* The result of the compose extension.
*/
composeExtension?: MessagingExtensionResult;
/**
* Cache information for the response.
*/
cacheInfo?: unknown;
}