UNPKG

468 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 { NbAuthStrategyOptions, NbStrategyToken } from '../auth-strategy-options';
7export declare class NbDummyAuthStrategyOptions extends NbAuthStrategyOptions {
8 token?: NbStrategyToken;
9 delay?: number;
10 alwaysFail?: boolean;
11}
12export declare const dummyStrategyOptions: NbDummyAuthStrategyOptions;