@akveo/nga-auth
Version:
@akveo/nga-auth
17 lines (16 loc) • 591 B
TypeScript
/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { NgaAuthService } from '../../services/auth.service';
export declare class NgaLogoutComponent implements OnInit {
protected service: NgaAuthService;
protected router: Router;
redirectDelay: number;
constructor(service: NgaAuthService, router: Router);
ngOnInit(): void;
logout(provider: string): void;
}