@universis/common
Version:
Universis - common directives and services
17 lines (16 loc) • 722 B
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
import { AuthenticationService } from './services/authentication.service';
import { UserService } from './services/user.service';
import { ErrorService } from '../error/error.service';
export declare class AuthCallbackComponent implements OnInit, OnDestroy {
private _router;
private _userService;
private _route;
private _errorService;
private _authService;
private queryMapSubscription;
constructor(_router: Router, _userService: UserService, _route: ActivatedRoute, _errorService: ErrorService, _authService: AuthenticationService);
ngOnDestroy(): void;
ngOnInit(): void;
}