UNPKG

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