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 NbRegisterComponent {
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 submitted: boolean;
20 errors: string[];
21 messages: string[];
22 user: any;
23 socialLinks: NbAuthSocialLink[];
24 constructor(service: NbAuthService, options: {}, cd: ChangeDetectorRef, router: Router);
25 register(): void;
26 getConfigValue(key: string): any;
27 static ɵfac: i0.ɵɵFactoryDeclaration<NbRegisterComponent, never>;
28 static ɵcmp: i0.ɵɵComponentDeclaration<NbRegisterComponent, "nb-register", never, {}, {}, never, never, false>;
29}