UNPKG

@nodecfdi/cfdi-cleaner

Version:

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

11 lines (10 loc) 701 B
import { type Document } from '@nodecfdi/cfdi-core'; import XmlAttributeMethods from '#src/mixins/xml_attribute_methods'; import XmlNamespaceMethods from '#src/mixins/xml_namespace_methods'; import { type XmlDocumentCleanerInterface } from '#src/types'; declare const RemoveNonSatSchemaLocations_base: import("ts-mixer/dist/types/types").Class<any[], XmlAttributeMethods & XmlNamespaceMethods, typeof XmlAttributeMethods & typeof XmlNamespaceMethods>; export default class RemoveNonSatSchemaLocations extends RemoveNonSatSchemaLocations_base implements XmlDocumentCleanerInterface { clean(document: Document): void; cleanSchemaLocationsValue(schemaLocationValue: string): string; } export {};