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.
38 lines (36 loc) • 1.24 kB
TypeScript
/**
* Automatically generated by {@link Script} on Mon, 04 Aug 2025 12:40:39 GMT
*
* @see {@link https://github.com/jslno/node-zugferd/blob/main/packages/node-zugferd/scripts/codelists/time/output.xml|Source}
*/
type TimeDefinition = {
key: string;
name: string;
value: string;
};
type TimeCode = (typeof TIME)[number]["value"];
/**
* Automatically generated by {@link Script} on Mon, 04 Aug 2025 12:40:39 GMT
*
* @see {@link https://github.com/jslno/node-zugferd/blob/main/packages/node-zugferd/scripts/codelists/time/output.xml|Source}
*/
declare const TIME: [{
readonly key: "DATE_OF_INVOICE";
readonly name: "Date of invoice";
readonly value: "5";
}, {
readonly key: "DATE_OF_DELIVERY_OF_GOODS_TO_ESTABLISHMENTSDOMICILESITE";
readonly name: "Date of delivery of goods to establishments/domicile/site";
readonly value: "29";
}, {
readonly key: "PAYMENT_DATE";
readonly name: "Payment date";
readonly value: "72";
}];
declare const timeCode: ("5" | "29" | "72")[];
declare const Time: {
DATE_OF_INVOICE: "5";
DATE_OF_DELIVERY_OF_GOODS_TO_ESTABLISHMENTSDOMICILESITE: "29";
PAYMENT_DATE: "72";
};
export { TIME, Time, type TimeCode, type TimeDefinition, timeCode };