UNPKG

@microsoft/agents-activity

Version:

Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.

27 lines (26 loc) 629 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { z } from 'zod'; /** * Enum representing text format types. */ export declare enum TextFormatTypes { /** * Represents text formatted using Markdown. */ Markdown = "markdown", /** * Represents plain text without any formatting. */ Plain = "plain", /** * Represents text formatted using XML. */ Xml = "xml" } /** * Zod schema for validating TextFormatTypes enum values. */ export declare const textFormatTypesZodSchema: z.ZodEnum<["markdown", "plain", "xml"]>;