UNPKG

399 BTypeScriptView Raw
1import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
2import { Observable } from 'rxjs';
3import { NacoService } from '../domains/services/naco.service';
4export declare class AuthInterceptor implements HttpInterceptor {
5 private naco;
6 constructor(naco: NacoService);
7 intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
8}