ns2-front-module-common
Version:
NS2 common module
21 lines • 632 B
JavaScript
import { Injectable, EventEmitter } from "@angular/core";
var HttpErrorService = (function () {
function HttpErrorService() {
this._handler = new EventEmitter();
}
Object.defineProperty(HttpErrorService.prototype, "handler", {
get: function () {
return this._handler;
},
enumerable: true,
configurable: true
});
return HttpErrorService;
}());
export { HttpErrorService };
HttpErrorService.decorators = [
{ type: Injectable },
];
/** @nocollapse */
HttpErrorService.ctorParameters = function () { return []; };
//# sourceMappingURL=http-error.service.js.map