UNPKG

1.1 kBTypeScriptView 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 { AuthenticationProviderOptions } from "./IAuthenticationProviderOptions";
11/**
12 * @class
13 * @implements AuthenticationProviderOptions
14 * Class representing MSALAuthenticationProviderOptions
15 */
16export declare class MSALAuthenticationProviderOptions implements AuthenticationProviderOptions {
17 /**
18 * @public
19 * A member holding array of scopes
20 */
21 scopes: string[];
22 /**
23 * @public
24 * @constructor
25 * To create an instance of MSALAuthenticationProviderOptions
26 * @param {string[]} scopes - An array of scopes
27 * @returns An instance of MSALAuthenticationProviderOptions
28 */
29 constructor(scopes: string[]);
30}