UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

18 lines (15 loc) 449 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { TaskModuleResponseBase } from './taskModuleResponseBase' import { TaskModuleTaskInfo } from './taskModuleTaskInfo' /** * Represents the continue response of a task module. */ export interface TaskModuleContinueResponse extends TaskModuleResponseBase { /** * The task module task information. */ value?: TaskModuleTaskInfo }