UNPKG

@nodecfdi/cfdi-cleaner

Version:

Librería para limpiar comprobantes fiscales digitales v3.3 y v4.0

9 lines (8 loc) 278 B
import { type Document } from '@nodecfdi/cfdi-core'; export type Constructor<T = any> = new (...args: T[]) => T; export interface XmlDocumentCleanerInterface { clean(document: Document): void; } export interface XmlStringCleanerInterface { clean(xml: string): string; }