UNPKG

887 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';
9import * as i0 from "@angular/core";
10export declare class NbLogoutComponent implements OnInit {
11 protected service: NbAuthService;
12 protected options: {};
13 protected router: Router;
14 redirectDelay: number;
15 strategy: string;
16 constructor(service: NbAuthService, options: {}, router: Router);
17 ngOnInit(): void;
18 logout(strategy: string): void;
19 getConfigValue(key: string): any;
20 static ɵfac: i0.ɵɵFactoryDeclaration<NbLogoutComponent, never>;
21 static ɵcmp: i0.ɵɵComponentDeclaration<NbLogoutComponent, "nb-logout", never, {}, {}, never, never>;
22}