UNPKG

@cause-911/core

Version:

Run `npm install @cause-911/core --save` to add this library to your project

9 lines (8 loc) 414 B
import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs'; import { CoreService } from '../../core.service'; export declare class HttpTokenReaderInterceptor implements HttpInterceptor { private coreService; constructor(coreService: CoreService); intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>; }