ruchy-syntax-tools
Version:
Comprehensive syntax highlighting and language support for the Ruchy programming language
12 lines • 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