@fluffy-spoon/angular.authentication.jwt
Advanced tools
Comparing version 1.0.58 to 1.0.59
@@ -1,2 +0,3 @@ | ||
import { HttpInterceptor, HttpHandler, HttpRequest } from '@angular/common/http'; | ||
import { Observable } from 'rxjs'; | ||
import { HttpInterceptor, HttpHandler, HttpRequest, HttpEvent } from '@angular/common/http'; | ||
import { TokenContainer } from './TokenContainer'; | ||
@@ -6,5 +7,5 @@ export declare class AuthenticationHttpInterceptor implements HttpInterceptor { | ||
constructor(tokenContainer: TokenContainer); | ||
intercept(request: HttpRequest<any>, next: HttpHandler): any; | ||
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>; | ||
private handleResponseHeader; | ||
private readonly isSignedIn; | ||
} |
@@ -157,6 +157,6 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { | ||
}; | ||
var _a; | ||
AuthenticationService = __decorate([ | ||
Injectable(), | ||
__metadata("design:paramtypes", [typeof (_a = typeof HttpClient !== "undefined" && HttpClient) === "function" && _a || Object, TokenContainer, String]) | ||
__metadata("design:paramtypes", [HttpClient, | ||
TokenContainer, String]) | ||
], AuthenticationService); | ||
@@ -163,0 +163,0 @@ return AuthenticationService; |
@@ -0,1 +1,2 @@ | ||
//created by Mathias Lorenzen. | ||
export { AuthenticationHttpInterceptor } from './AuthenticationHttpInterceptor'; | ||
@@ -2,0 +3,0 @@ export { AuthenticationService } from './AuthenticationService'; |
{ | ||
"name": "@fluffy-spoon/angular.authentication.jwt", | ||
"version": "1.0.58", | ||
"version": "1.0.59", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./dist/Index.js", |
@@ -0,1 +1,3 @@ | ||
//created by Mathias Lorenzen. | ||
export { AuthenticationHttpInterceptor } from './AuthenticationHttpInterceptor'; | ||
@@ -2,0 +4,0 @@ export { AuthenticationService } from './AuthenticationService'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
41428
774