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 | * @interface
|
9 | * A signature represents the Authentication provider options
|
10 | * @property {string[]} [scopes] - The array of scopes
|
11 | */
|
12 | export interface AuthenticationProviderOptions {
|
13 | scopes?: string[];
|
14 | }
|