UNPKG

einvoicing

Version:

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

28 lines 961 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DocumentTypes = exports.DocumentId = void 0; var tslib_1 = require("tslib"); /** * IDocument.ts * * @copyright Vitalii Savchuk <esvit666@gmail.com> * @package esvit/einvoicing * @licence MIT https://opensource.org/licenses/MIT */ var EntityId_1 = require("../base/EntityId"); var DocumentId = /** @class */ (function (_super) { tslib_1.__extends(DocumentId, _super); function DocumentId() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.DocumentId = 'document_id'; return _this; } return DocumentId; }(EntityId_1.EntityId)); exports.DocumentId = DocumentId; var DocumentTypes; (function (DocumentTypes) { DocumentTypes["Invoice"] = "invoice"; DocumentTypes["CreditNote"] = "credit_note"; })(DocumentTypes || (exports.DocumentTypes = DocumentTypes = {})); //# sourceMappingURL=IDocument.js.map