aimpress-chatbot/node_modules/botbuilder-core/lib/userTokenSettings.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

36 lines
No EOL
1 KiB
TypeScript

/**
* @module botbuilder
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Provides details for token polling.
*/
export interface TokenPollingSettings {
/**
* Polling timeout time in milliseconds. This is equivalent to login flow timeout.
*/
timeout?: number;
/**
* Time Interval in milliseconds between token polling requests.
*/
interval?: number;
}
/**
* TurnState key for the OAuth login timeout
*/
export declare const OAuthLoginTimeoutKey = "loginTimeout";
/**
* Name of the token polling settings key.
*/
export declare const TokenPollingSettingsKey = "tokenPollingSettings";
/**
* Default amount of time an OAuthCard will remain active (clickable and actively waiting for a token).
* After this time:
* (1) the OAuthCard will not allow the user to click on it.
* (2) any polling triggered by the OAuthCard will stop.
*/
export declare const OAuthLoginTimeoutMsValue = 900000;
//# sourceMappingURL=userTokenSettings.d.ts.map