logout.component.d.ts 632 B

12345678910111213141516
  1. import { OnInit } from '@angular/core';
  2. import { NbAuthService } from '@nebular/auth';
  3. import { Router } from '@angular/router';
  4. import { LoginLangService } from '../login-lang.service';
  5. export declare class LogoutComponent implements OnInit {
  6. protected service: NbAuthService;
  7. protected langService: LoginLangService;
  8. protected options: {};
  9. protected router: Router;
  10. redirectDelay: number;
  11. strategy: string;
  12. constructor(service: NbAuthService, langService: LoginLangService, options: {}, router: Router);
  13. ngOnInit(): void;
  14. logout(strategy: string): void;
  15. getConfigValue(key: string): any;
  16. }