@microsoft/agents-hosting-extensions-teams
Version:
Microsoft 365 Agents SDK for JavaScript. Teams extensions
15 lines (14 loc) • 398 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { TaskModuleResponseBase } from './taskModuleResponseBase';
/**
* Represents the message response of a task module.
*/
export interface TaskModuleMessageResponse extends TaskModuleResponseBase {
/**
* The value of the task module message response.
*/
value?: string;
}