UNPKG

402 BTypeScriptView Raw
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 */
6import { NbAuthTokenClass } from '../services/token/token';
7export interface NbStrategyToken {
8 class?: NbAuthTokenClass;
9 [key: string]: any;
10}
11export declare class NbAuthStrategyOptions {
12 name: string;
13 token?: NbStrategyToken;
14}