UNPKG

671 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 { OnInit } from '@angular/core';
7import { Router } from '@angular/router';
8import { NbAuthService } from '../../services/auth.service';
9export declare class NbLogoutComponent implements OnInit {
10 protected service: NbAuthService;
11 protected options: {};
12 protected router: Router;
13 redirectDelay: number;
14 strategy: string;
15 constructor(service: NbAuthService, options: {}, router: Router);
16 ngOnInit(): void;
17 logout(strategy: string): void;
18 getConfigValue(key: string): any;
19}