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.
35 lines (33 loc) • 1.26 kB
TypeScript
/**
* Automatically generated by {@link Script} on Mon, 04 Aug 2025 12:40:40 GMT
*
* @see {@link https://github.com/jslno/node-zugferd/blob/main/packages/node-zugferd/scripts/codelists/mime/output.xml|Source}
*/
type MimeDefinition = {
value: string;
};
type MimeCode = (typeof MIME)[number]["value"];
/**
* Automatically generated by {@link Script} on Mon, 04 Aug 2025 12:40:40 GMT
*
* @see {@link https://github.com/jslno/node-zugferd/blob/main/packages/node-zugferd/scripts/codelists/mime/output.xml|Source}
*/
declare const MIME: [{
readonly value: "application/pdf";
}, {
readonly value: "image/png";
}, {
readonly value: "image/jpeg";
}, {
readonly value: "text/csv";
}, {
readonly value: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
}, {
readonly value: "application/vnd.oasis.opendocument.spreadsheet";
}, {
readonly value: "application/xml";
}, {
readonly value: "text/xml";
}];
declare const mimeCode: ("application/pdf" | "application/xml" | "image/png" | "image/jpeg" | "text/csv" | "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" | "application/vnd.oasis.opendocument.spreadsheet" | "text/xml")[];
export { MIME, type MimeCode, type MimeDefinition, mimeCode };