botbuilder
Version:
Bot Builder is a framework for building rich bots on virtually any platform.
14 lines • 688 B
TypeScript
import { BotFrameworkAuthentication, ClaimsIdentity } from 'botframework-connector';
import { ChannelServiceHandlerBase } from './channelServiceHandlerBase';
/**
* A class to help with the implementation of the Bot Framework protocol using [BotFrameworkAuthentication](xref:botframework-connector.BotFrameworkAuthentication).
*/
export declare class CloudChannelServiceHandler extends ChannelServiceHandlerBase {
private readonly auth;
/**
* @param auth Bot framework authentication
*/
constructor(auth: BotFrameworkAuthentication);
protected authenticate(authHeader: string): Promise<ClaimsIdentity>;
}
//# sourceMappingURL=cloudChannelServiceHandler.d.ts.map