1 | /**
|
2 | * @license
|
3 | * Copyright Akveo. All Rights Reserved.
|
4 | * Licensed under the MIT License. See License.txt in the project root for license information.
|
5 | */
|
6 | import { HttpHeaders } from '@angular/common/http';
|
7 | import { NbAuthTokenClass } from '../services/token/token';
|
8 | export interface NbStrategyToken {
|
9 | class?: NbAuthTokenClass;
|
10 | [key: string]: any;
|
11 | }
|
12 | export declare class NbAuthStrategyOptions {
|
13 | name: string;
|
14 | token?: NbStrategyToken;
|
15 | headers?: HttpHeaders | {
|
16 | [header: string]: string | string[];
|
17 | };
|
18 | }
|