1 | import { Observable } from 'rxjs';
|
2 | import { NbAuthStrategy } from '../auth-strategy';
|
3 | import { NbAuthResult } from '../../services/auth-result';
|
4 | import { NbDummyAuthStrategyOptions } from './dummy-strategy-options';
|
5 | import { NbAuthStrategyClass } from '../../auth.options';
|
6 | import * as i0 from "@angular/core";
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 | export declare class NbDummyAuthStrategy extends NbAuthStrategy {
|
25 | protected defaultOptions: NbDummyAuthStrategyOptions;
|
26 | static setup(options: NbDummyAuthStrategyOptions): [NbAuthStrategyClass, NbDummyAuthStrategyOptions];
|
27 | authenticate(data?: any): Observable<NbAuthResult>;
|
28 | register(data?: any): Observable<NbAuthResult>;
|
29 | requestPassword(data?: any): Observable<NbAuthResult>;
|
30 | resetPassword(data?: any): Observable<NbAuthResult>;
|
31 | logout(data?: any): Observable<NbAuthResult>;
|
32 | refreshToken(data?: any): Observable<NbAuthResult>;
|
33 | protected createDummyResult(data?: any): NbAuthResult;
|
34 | static ɵfac: i0.ɵɵFactoryDeclaration<NbDummyAuthStrategy, never>;
|
35 | static ɵprov: i0.ɵɵInjectableDeclaration<NbDummyAuthStrategy>;
|
36 | }
|