aimpress-chatbot/node_modules/@azure/identity/dist/browser/credentials/managedIdentityCredential/models.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
682 B
TypeScript

import type { AccessToken } from "@azure/core-auth";
import type { IdentityClient } from "../../client/identityClient.js";
/**
* @internal
*/
export interface MSIConfiguration {
retryConfig: {
maxRetries: number;
startDelayInMs: number;
intervalIncrement: number;
};
identityClient: IdentityClient;
scopes: string | string[];
clientId?: string;
resourceId?: string;
}
/**
* @internal
* Represents an access token for {@link ManagedIdentity} for internal usage,
* with an expiration time and the time in which token should refresh.
*/
export declare interface MSIToken extends AccessToken {
}
//# sourceMappingURL=models.d.ts.map