UNPKG

einvoicing

Version:

A JavaScript library for creating and parsing electronic invoices compliant with the eInvoicing Directive, EN 16931, and popular extensions

22 lines 667 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HashError = void 0; var tslib_1 = require("tslib"); /** * HashError.ts * * @copyright Vitalii Savchuk <esvit666@gmail.com> * @package esvit/einvoicing * @licence MIT https://opensource.org/licenses/MIT */ var HashError = /** @class */ (function (_super) { tslib_1.__extends(HashError, _super); function HashError(message) { var _this = _super.call(this, message) || this; Object.setPrototypeOf(_this, HashError.prototype); return _this; } return HashError; }(Error)); exports.HashError = HashError; //# sourceMappingURL=HashError.js.map