@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
23 lines (20 loc) • 600 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { CacheInfo } from '../agent-config/cacheInfo'
import { TaskModuleContinueResponse } from './taskModuleContinueResponse'
import { TaskModuleMessageResponse } from './taskModuleMessageResponse'
/**
* Interface representing the response of a task module.
*/
export interface TaskModuleResponse {
/**
* The task module continue or message response.
*/
task?: TaskModuleContinueResponse | TaskModuleMessageResponse
/**
* The cache information.
*/
cacheInfo?: CacheInfo
}