aimpress-chatbot/node_modules/botframework-connector/lib/auth/authenticateRequestResult.d.ts
“SamoilenkoVadym” 195299ece0 Initial commit
2025-04-27 17:05:18 +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