UNPKG

754 BTypeScriptView Raw
1/**
2 * -------------------------------------------------------------------------------------------
3 * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
4 * See License in the project root for license information.
5 * -------------------------------------------------------------------------------------------
6 */
7/**
8 * @module MSALAuthenticationProviderOptions
9 */
10import { AccountInfo, InteractionType } from "@azure/msal-browser";
11import { AuthenticationProviderOptions } from "../../IAuthenticationProviderOptions";
12export interface AuthCodeMSALBrowserAuthenticationProviderOptions extends AuthenticationProviderOptions {
13 scopes: string[];
14 account: AccountInfo;
15 interactionType: InteractionType;
16}