los-auth
Version:
Libreria de autenticacion para las aplicaciones internas de la empresa LOS
9 lines (8 loc) • 375 B
TypeScript
import { Router, RouterStateSnapshot, CanActivate } from '@angular/router';
import { LosAuthService } from './los-auth.service';
export declare class LosAuthGuardService implements CanActivate {
private authService;
private route;
constructor(authService: LosAuthService, route: Router);
canActivate(next: any, state: RouterStateSnapshot): boolean;
}