/** * @author Qianhao Dong */ export declare enum BotChannelType { MicrosoftTeams = "msteams", M365Extensions = "m365extensions" } export interface IBotRegistration { botId?: string; name: string; description: string; iconUrl: string; messagingEndpoint: string; callingEndpoint: string; configuredChannels?: BotChannelType[]; isSingleTenant?: boolean; } //# sourceMappingURL=IBotRegistration.d.ts.map