diff --git a/src/MSALAuthenticationProvider.ts b/src/MSALAuthenticationProvider.ts index ba75ffa3d..50e60ee9b 100644 --- a/src/MSALAuthenticationProvider.ts +++ b/src/MSALAuthenticationProvider.ts @@ -34,10 +34,10 @@ export class MSALAuthenticationProvider implements AuthenticationProvider { private scopes: string[]; /** - * @private + * @public * A member holding an instance of UserAgentApplication returned from MSAL */ - private userAgentApplication: UserAgentApplication; + public userAgentApplication: UserAgentApplication; /** * @public diff --git a/src/browser/MSALAuthenticationProvider.ts b/src/browser/MSALAuthenticationProvider.ts index 08d8a6343..a558842f0 100644 --- a/src/browser/MSALAuthenticationProvider.ts +++ b/src/browser/MSALAuthenticationProvider.ts @@ -38,10 +38,10 @@ export class MSALAuthenticationProvider implements AuthenticationProvider { private scopes: string[]; /** - * @private + * @public * A member holding an instance of UserAgentApplication returned from MSAL */ - private userAgentApplication: any; + public userAgentApplication: any; /** * @public