From 53604fbdb6a2a28a01e595445c49390c605ee0b4 Mon Sep 17 00:00:00 2001 From: Robert Corrigan Date: Sat, 9 Mar 2019 08:23:42 -0500 Subject: [PATCH] Make MSALAuthenticationProvider.userAgentApplication public --- src/MSALAuthenticationProvider.ts | 4 ++-- src/browser/MSALAuthenticationProvider.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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