node-zugferd
Version:
A Node.js library for creating ZUGFeRD/Factur-X compliant documents. Generating XML and embedding it into PDF/A files, enabling seamless e-invoicing and digital document compliance.
19 lines (18 loc) • 440 B
JavaScript
// src/codelists/mime.gen.ts
var MIME = [
{ value: "application/pdf" },
{ value: "image/png" },
{ value: "image/jpeg" },
{ value: "text/csv" },
{
value: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
},
{ value: "application/vnd.oasis.opendocument.spreadsheet" },
{ value: "application/xml" },
{ value: "text/xml" }
];
var mimeCode = MIME.map(({ value }) => value);
export {
MIME,
mimeCode
};