@@ -13,7 +13,7 @@ import { AuthenticationParameters, AuthResponse, InteractionRequiredAuthError, U
1313
1414import { AuthenticationProvider } from "./IAuthenticationProvider" ;
1515import { AuthenticationProviderOptions } from "./IAuthenticationProviderOptions" ;
16- import { ImplicitMSALAuthenticationProviderOptions } from "./ImplicitMSALAuthenticationProviderOptions " ;
16+ import { MSALAuthenticationProviderOptions } from "./MSALAuthenticationProviderOptions " ;
1717
1818/**
1919 * @class
@@ -23,9 +23,9 @@ import { ImplicitMSALAuthenticationProviderOptions } from "./ImplicitMSALAuthent
2323export class ImplicitMSALAuthenticationProvider implements AuthenticationProvider {
2424 /**
2525 * @private
26- * A member holding an instance of ImplicitMSALAuthenticationProviderOptions
26+ * A member holding an instance of MSALAuthenticationProviderOptions
2727 */
28- private options : ImplicitMSALAuthenticationProviderOptions ;
28+ private options : MSALAuthenticationProviderOptions ;
2929
3030 /**
3131 * @private
@@ -38,10 +38,10 @@ export class ImplicitMSALAuthenticationProvider implements AuthenticationProvide
3838 * @constructor
3939 * Creates an instance of ImplicitMSALAuthenticationProvider
4040 * @param {UserAgentApplication } msalInstance - An instance of MSAL UserAgentApplication
41- * @param {ImplicitMSALAuthenticationProviderOptions } options - An instance of ImplicitMSALAuthenticationProviderOptions
41+ * @param {MSALAuthenticationProviderOptions } options - An instance of MSALAuthenticationProviderOptions
4242 * @returns An instance of ImplicitMSALAuthenticationProvider
4343 */
44- public constructor ( msalInstance : UserAgentApplication , options : ImplicitMSALAuthenticationProviderOptions ) {
44+ public constructor ( msalInstance : UserAgentApplication , options : MSALAuthenticationProviderOptions ) {
4545 this . options = options ;
4646 this . msalInstance = msalInstance ;
4747 }
@@ -54,7 +54,7 @@ export class ImplicitMSALAuthenticationProvider implements AuthenticationProvide
5454 * @returns The promise that resolves to an access token
5555 */
5656 public async getAccessToken ( authenticationProviderOptions ?: AuthenticationProviderOptions ) : Promise < string > {
57- const options : ImplicitMSALAuthenticationProviderOptions = authenticationProviderOptions as ImplicitMSALAuthenticationProviderOptions ;
57+ const options : MSALAuthenticationProviderOptions = authenticationProviderOptions as MSALAuthenticationProviderOptions ;
5858 let scopes : string [ ] ;
5959 if ( typeof options !== "undefined" ) {
6060 scopes = options . scopes ;
0 commit comments