12345678910111213141516 |
- import { OnInit } from '@angular/core';
- import { NbAuthService } from '@nebular/auth';
- import { Router } from '@angular/router';
- import { LoginLangService } from '../login-lang.service';
- export declare class LogoutComponent implements OnInit {
- protected service: NbAuthService;
- protected langService: LoginLangService;
- protected options: {};
- protected router: Router;
- redirectDelay: number;
- strategy: string;
- constructor(service: NbAuthService, langService: LoginLangService, options: {}, router: Router);
- ngOnInit(): void;
- logout(strategy: string): void;
- getConfigValue(key: string): any;
- }
|