UNPKG

804 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 { NbAuthService } from '../../services/auth.service';
9export declare class NbResetPasswordComponent {
10 protected service: NbAuthService;
11 protected options: {};
12 protected cd: ChangeDetectorRef;
13 protected router: Router;
14 redirectDelay: number;
15 showMessages: any;
16 strategy: string;
17 submitted: boolean;
18 errors: string[];
19 messages: string[];
20 user: any;
21 constructor(service: NbAuthService, options: {}, cd: ChangeDetectorRef, router: Router);
22 resetPass(): void;
23 getConfigValue(key: string): any;
24}