10 lines
No EOL
700 B
TypeScript
10 lines
No EOL
700 B
TypeScript
import type { AuthorityValidationOptions } from "./authorityValidationOptions.js";
|
|
import type { CredentialPersistenceOptions } from "./credentialPersistenceOptions.js";
|
|
import type { MultiTenantTokenCredentialOptions } from "./multiTenantTokenCredentialOptions.js";
|
|
/**
|
|
* Defines options for the {@link UsernamePasswordCredential} class.
|
|
* @deprecated UsernamePasswordCredential is deprecated. Use a more secure credential. See https://aka.ms/azsdk/identity/mfa for details.
|
|
*/
|
|
export interface UsernamePasswordCredentialOptions extends MultiTenantTokenCredentialOptions, CredentialPersistenceOptions, AuthorityValidationOptions {
|
|
}
|
|
//# sourceMappingURL=usernamePasswordCredentialOptions.d.ts.map
|