semblance/node_modules/@azure/msal-react/dist/MsalProvider.d.ts
2025-12-19 19:26:16 +00:00

9 lines
429 B
TypeScript
Executable file

import React, { PropsWithChildren } from "react";
import { IPublicClientApplication } from "@azure/msal-browser";
export type MsalProviderProps = PropsWithChildren<{
instance: IPublicClientApplication;
}>;
/**
* MSAL context provider component. This must be rendered above any other components that use MSAL.
*/
export declare function MsalProvider({ instance, children, }: MsalProviderProps): React.ReactElement;