MsalGuardConfiguration type

type MsalGuardConfiguration = {
  authRequest?:
    | MsalGuardAuthRequest
    | ((
        authService: MsalService,
        state: RouterStateSnapshot
      ) => MsalGuardAuthRequest),
  interactionType: Popup | Redirect,
  loginFailedRoute?: string,
}