UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

22 lines (19 loc) 558 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ 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?: any // TODO CacheInfo }