UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

20 lines (19 loc) 546 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { TaskModuleContinueResponse } from './taskModuleContinueResponse'; import { TaskModuleMessageResponse } from './taskModuleMessageResponse'; /** * Represents the response of a task module. */ export interface TaskModuleResponse { /** * The task module continue or message response. */ task?: TaskModuleContinueResponse | TaskModuleMessageResponse; /** * The cache information. */ cacheInfo?: any; }