UNPKG

749 BPlain TextView 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/**
9 * @module MSALAuthenticationProviderOptions
10 */
11
12import { AccountInfo, InteractionType } from "@azure/msal-browser";
13
14import { AuthenticationProviderOptions } from "../../IAuthenticationProviderOptions";
15
16export interface AuthCodeMSALBrowserAuthenticationProviderOptions extends AuthenticationProviderOptions {
17 scopes: string[];
18 account: AccountInfo;
19 interactionType: InteractionType;
20}