reset-password.component.d.ts 765 B

123456789101112131415161718192021
  1. import { ChangeDetectorRef } from '@angular/core';
  2. import { Router } from '@angular/router';
  3. import { NbAuthService } from '@nebular/auth';
  4. import { LoginLangService } from '../login-lang.service';
  5. export declare class ResetPasswordComponent {
  6. protected service: NbAuthService;
  7. protected langService: LoginLangService;
  8. protected options: {};
  9. protected cd: ChangeDetectorRef;
  10. protected router: Router;
  11. redirectDelay: number;
  12. showMessages: any;
  13. strategy: string;
  14. submitted: boolean;
  15. errors: string[];
  16. messages: string[];
  17. user: any;
  18. constructor(service: NbAuthService, langService: LoginLangService, options: {}, cd: ChangeDetectorRef, router: Router);
  19. resetPass(): void;
  20. getConfigValue(key: string): any;
  21. }