UNPKG

890 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 NbRegisterComponent {
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 submitted: boolean;
19 errors: string[];
20 messages: string[];
21 user: any;
22 socialLinks: NbAuthSocialLink[];
23 constructor(service: NbAuthService, options: {}, cd: ChangeDetectorRef, router: Router);
24 register(): void;
25 getConfigValue(key: string): any;
26}