UNPKG

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.

36 lines (34 loc) 1.27 kB
/** * 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/date/output.xml|Source} */ type DateDefinition = { key: string; name: string; value: string; description: string; }; type DateCode = (typeof DATE)[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/date/output.xml|Source} */ declare const DATE: [{ readonly key: "CCYYMMDD"; readonly name: "CCYYMMDD"; readonly value: "102"; readonly description: "Calendar date: C = Century ; Y = Year ; M = Month ; D = Day."; }, { readonly key: "CCYYMMDDHHMMZHHMM"; readonly name: "CCYYMMDDHHMMZHHMM"; readonly value: "205"; readonly description: "Calendar date including time and time zone expressed in hours and minutes.\nZHHMM = time zone given as offset from Coordinated Universal Time (UTC)."; }]; declare const dateCode: ("102" | "205")[]; declare const Date: { CCYYMMDD: "102"; CCYYMMDDHHMMZHHMM: "205"; }; export { DATE, Date, type DateCode, type DateDefinition, dateCode };