UNPKG

@shane32/msoauth

Version:

A React library for Azure AD authentication with PKCE (Proof Key for Code Exchange) flow support. This library provides a secure and easy-to-use solution for implementing Azure AD authentication in React applications, with support for both API and Microso

8 lines (7 loc) 275 B
import AuthManager from "./AuthManager"; /** * Context for multiple auth managers * Provides access to all configured auth managers */ declare const AuthManagersContext: import("react").Context<Map<string, AuthManager<string>> | null>; export default AuthManagersContext;