12 lines
No EOL
613 B
TypeScript
12 lines
No EOL
613 B
TypeScript
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
|