aimpress-chatbot/node_modules/botframework-connector/lib/auth/microsoftGovernmentAppCredentials.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

27 lines
No EOL
1.1 KiB
TypeScript

/**
* @module botframework-connector
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { MicrosoftAppCredentials } from './microsoftAppCredentials';
/**
* MicrosoftGovermentAppCredentials auth implementation
*/
export declare class MicrosoftGovernmentAppCredentials extends MicrosoftAppCredentials {
appPassword: string;
/**
* Initializes a new instance of the [MicrosoftGovernmentAppCredentials](xref:botframework-connector.MicrosoftGovernmentAppCredentials) class.
*
* @param {string} appId The Microsoft app ID.
* @param {string} appPassword The Microsoft app password.
* @param {string} channelAuthTenant Optional. The oauth token tenant.
* @param {string} oAuthScope Optional. The scope for the token.
*/
constructor(appId: string, appPassword: string, channelAuthTenant?: string, oAuthScope?: string);
protected GetToChannelFromBotOAuthScope(): string;
protected GetToChannelFromBotLoginUrlPrefix(): string;
protected GetDefaultChannelAuthTenant(): string;
}
//# sourceMappingURL=microsoftGovernmentAppCredentials.d.ts.map