9 lines
429 B
TypeScript
Executable file
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;
|