UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

18 lines (17 loc) 403 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ /** * Type representing the message preview type. */ export type MessagePreviewType = 'message' | 'continue'; /** * Represents the base response of a task module. */ export interface TaskModuleResponseBase { /** * The type of the message preview. */ type?: MessagePreviewType; }