UNPKG

easy-e-invoice

Version:

Easy invoice XRechnung is a standardized electronic invoice format developed to comply with the European Directive 2014/55/EU

11 lines (10 loc) 518 B
import { generateCrossIndustryInvoiceXml } from '../src/generateCrossIndustryInvoiceXml'; import { simpleConvertEInvoiceToCII } from '../src/simpleConvertEInvoiceToCII'; export * from './types/CrossIndustryInvoice'; export * from './types/convertEInvoiceToCII'; export * from './generateCrossIndustryInvoiceXml'; export * from './simpleConvertEInvoiceToCII'; // XML Generation Function export function generateEInvoiceXML(einvoice) { return generateCrossIndustryInvoiceXml(simpleConvertEInvoiceToCII(einvoice)); }