import type { INodeBuffer, INodeSocket } from 'botframework-streaming'; import type { Request, Response } from './interfaces'; import type { TurnContext } from 'botbuilder-core'; /** * BotFrameworkHttpAdapter is the interface that describes a Bot Framework * adapter that operates on HTTP requests. */ export interface BotFrameworkHttpAdapter { /** * Process a web request by applying a logic callback function. */ process(req: Request, res: Response, logic: (context: TurnContext) => Promise): Promise; /** * Handle a web socket connection by applying a logic callback function to * each streaming request. */ process(req: Request, socket: INodeSocket, head: INodeBuffer, logic: (context: TurnContext) => Promise): Promise; } //# sourceMappingURL=botFrameworkHttpAdapter.d.ts.map