UNPKG

@fin.cx/einvoice

Version:

A TypeScript module for creating, manipulating, and embedding XML data within PDF files specifically tailored for electronic invoice (einvoice) packages.

13 lines (12 loc) 398 B
import { BaseValidator } from '../base/base.validator.js'; /** * Factory to create the appropriate validator based on the XML format */ export declare class ValidatorFactory { /** * Creates a validator for the specified XML content * @param xml XML content to validate * @returns Appropriate validator instance */ static createValidator(xml: string): BaseValidator; }