einvoicing
Version:
A JavaScript library for creating and parsing electronic invoices compliant with the eInvoicing Directive, EN 16931, and popular extensions
19 lines • 587 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var Entity_1 = require("../base/Entity");
var Tax = /** @class */ (function (_super) {
tslib_1.__extends(Tax, _super);
function Tax() {
return _super !== null && _super.apply(this, arguments) || this;
}
Tax.create = function (props) {
return new Tax(props, props.id);
};
Tax.prototype.toPrimitive = function () {
return this.props;
};
return Tax;
}(Entity_1.Entity));
exports.default = Tax;
//# sourceMappingURL=Tax.js.map