aimpress-chatbot/node_modules/botframework-connector/lib/auth/authenticateRequestResult.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

24 lines
No EOL
640 B
TypeScript

import type { ClaimsIdentity } from './claimsIdentity';
import type { ConnectorFactory } from './connectorFactory';
/**
* The result from a call to authenticate a Bot Framework Protocol request.
*/
export declare type AuthenticateRequestResult = {
/**
* A value for the Audience.
*/
audience: string;
/**
* A value for the ClaimsIdentity.
*/
claimsIdentity: ClaimsIdentity;
/**
* A value for the CallerId.
*/
callerId?: string;
/**
* A value for the ConnectorFactory.
*/
connectorFactory?: ConnectorFactory;
};
//# sourceMappingURL=authenticateRequestResult.d.ts.map