los-auth
Version:
Libreria de autenticacion para las aplicaciones internas de la empresa LOS
9 lines (8 loc) • 408 B
TypeScript
import { Injector } from '@angular/core';
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
import { Observable } from 'rxjs/Observable';
export declare class LosAuthInterceptor implements HttpInterceptor {
private injector;
constructor(injector: Injector);
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
}