UNPKG

1.12 kBTypeScriptView 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 { ChangeDetectorRef } from '@angular/core';
7import { Router } from '@angular/router';
8import { NbAuthSocialLink } from '../../auth.options';
9import { NbAuthService } from '../../services/auth.service';
10import * as i0 from "@angular/core";
11export declare class NbLoginComponent {
12 protected service: NbAuthService;
13 protected options: {};
14 protected cd: ChangeDetectorRef;
15 protected router: Router;
16 redirectDelay: number;
17 showMessages: any;
18 strategy: string;
19 errors: string[];
20 messages: string[];
21 user: any;
22 submitted: boolean;
23 socialLinks: NbAuthSocialLink[];
24 rememberMe: boolean;
25 constructor(service: NbAuthService, options: {}, cd: ChangeDetectorRef, router: Router);
26 login(): void;
27 getConfigValue(key: string): any;
28 static ɵfac: i0.ɵɵFactoryDeclaration<NbLoginComponent, never>;
29 static ɵcmp: i0.ɵɵComponentDeclaration<NbLoginComponent, "nb-login", never, {}, {}, never, never>;
30}