x-ng2-http-interceptor
Version:
Adds interception capability around angular http api
29 lines • 888 B
JavaScript
import { InterceptorUtils } from './interceptor-utils';
export var InterceptorRequest = (function () {
function InterceptorRequest(builder) {
InterceptorUtils.assign(this, builder);
}
Object.defineProperty(InterceptorRequest.prototype, "url", {
get: function () {
return this._url;
},
enumerable: true,
configurable: true
});
Object.defineProperty(InterceptorRequest.prototype, "options", {
get: function () {
return this._options;
},
enumerable: true,
configurable: true
});
Object.defineProperty(InterceptorRequest.prototype, "sharedData", {
get: function () {
return this._sharedData;
},
enumerable: true,
configurable: true
});
return InterceptorRequest;
}());
//# sourceMappingURL=interceptor-request.js.map