UNPKG

@azure/identity

Version:

Provides credential implementations for Azure SDK libraries that can authenticate with Microsoft Entra ID

12 lines 613 B
import type { TokenCredentialOptions } from "../tokenCredentialOptions.js"; /** * Options for multi-tenant applications which allows for additionally allowed tenants. */ export interface MultiTenantTokenCredentialOptions extends TokenCredentialOptions { /** * For multi-tenant applications, specifies additional tenants for which the credential may acquire tokens. * Add the wildcard value "*" to allow the credential to acquire tokens for any tenant the application is installed. */ additionallyAllowedTenants?: string[]; } //# sourceMappingURL=multiTenantTokenCredentialOptions.d.ts.map