/** *
* Built-in Azure AD integration. * * * *
* * @module providers/azure-ad */ import MicrosoftEntraID from "./microsoft-entra-id.js"; /** * @deprecated * Azure Active Directory has been renamed to [Microsoft Entra ID](/getting-started/providers/microsoft-entra-id). * Import this provider from the `providers/microsoft-entra-id` submodule instead of `providers/azure-ad`. */ export default function AzureAD(config) { return { ...MicrosoftEntraID(config), id: "azure-ad", name: "Azure Active Directory", }; }