@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
15 lines (14 loc) • 589 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { CloudAdapter, TurnContext } from '@microsoft/agents-hosting';
import { TeamsConnectorClient } from './connector-client/teamsConnectorClient';
/**
* Adapter for handling cloud-based bot interactions.
*/
export declare class TeamsCloudAdapter extends CloudAdapter {
connectorClient: TeamsConnectorClient;
protected createConnectorClient(serviceUrl: string, scope: string): Promise<TeamsConnectorClient>;
protected setConnectorClient(context: TurnContext): void;
}