n8n-nodes-einvoice
Version:
n8n.io node to handle E-Invoices with PDF or XML Files (ZUGFeRD / XRechnung / Factur-X / EN-16931)
4 lines (3 loc) • 409 B
TypeScript
import type { IExecuteFunctions } from 'n8n-workflow';
export declare function extractEInvoiceFromPDF(this: IExecuteFunctions, binaryPropertyName: string, password: string, mode: 'json' | 'xml' | 'simple', itemIndex?: number): Promise<any>;
export declare function extractEInvoiceFromXML(this: IExecuteFunctions, binaryPropertyName: string, mode: 'json' | 'xml' | 'simple', itemIndex?: number): Promise<any>;