From 0247630515817f7b820916141a431f1f22744eb4 Mon Sep 17 00:00:00 2001 From: Kevin Hill <107003416+khill-fbmc@users.noreply.github.com> Date: Tue, 17 Jan 2023 12:16:34 -0800 Subject: [PATCH] Update AuthCodeMSALBrowserAuthenticationProvider.md Small syntax error in example --- docs/AuthCodeMSALBrowserAuthenticationProvider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/AuthCodeMSALBrowserAuthenticationProvider.md b/docs/AuthCodeMSALBrowserAuthenticationProvider.md index fee11ca18..784f1cf9b 100644 --- a/docs/AuthCodeMSALBrowserAuthenticationProvider.md +++ b/docs/AuthCodeMSALBrowserAuthenticationProvider.md @@ -34,7 +34,7 @@ Using npm: import { AuthCodeMSALBrowserAuthenticationProvider, AuthCodeMSALBrowserAuthenticationProviderOptions } from "@microsoft/microsoft-graph-client/authProviders/authCodeMsalBrowser"; import { Client } from "@microsoft/microsoft-graph-client"; - const options:AuthCodeMSALBrowserAuthenticationProviderOptions: { + const options: AuthCodeMSALBrowserAuthenticationProviderOptions = { account: account, // the AccountInfo instance to acquire the token for. interactionType: InteractionType.PopUp , // msal-browser InteractionType scopes: ["user.read", "mail.send"] // example of the scopes to be passed