UNPKG

zugferd-code-lists

Version:

ZUGFeRD code lists, e.g. languages enum, currencies enum, countries enum, etc.

22 lines (20 loc) 650 B
declare enum Filename { /** * The hybrid document contains a Factur-X / ZUGFeRD XML-file * * The ConformanceLevel MUST not be XRECHNUNG */ TheHybridDocumentContainsAFacturXZugferdXmlFile = "factur-x.xml", /** * The hybrid document contains a XRechnung XML file * * The ConformanceLevel MUST be XRECHNUNG */ TheHybridDocumentContainsAXrechnungXmlFile = "xrechnung.xml", /** * The hybrid document contains an Order-X XML file */ TheHybridDocumentContainsAnOrderXXmlFile = "order-x.xml" } declare function description(value: Filename): string; export { Filename, description };