UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

27 lines (26 loc) 620 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { z } from 'zod'; /** * Enum representing the different Teams channel types. */ export declare enum ChannelTypes { /** * Represents a private Teams channel. */ Private = "private", /** * Represents a shared Teams channel. */ Shared = "shared", /** * Represents a standard Teams channel. */ Standard = "standard" } /** * Zod schema for validating channel types. */ export declare const channelTypeZodSchema: z.ZodEnum<["standard", "private", "shared"]>;