UNPKG

@nodecfdi/cfdi-cleaner

Version:

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

10 lines (9 loc) 426 B
import type ExcludeList from '#src/exclude_list'; import { type XmlStringCleanerInterface } from '#src/types'; export default class XmlStringCleaners implements XmlStringCleanerInterface { private readonly cleaners; constructor(...cleaners: XmlStringCleanerInterface[]); static createDefault(): XmlStringCleaners; clean(xml: string): string; withOutCleaners(excludeList: ExcludeList): XmlStringCleaners; }