@openade/fe
Version:
Fatturazione Elettronica - Electronic Invoicing for Sistema di Interscambio (SDI)
14 lines • 437 B
TypeScript
export declare class XmlService {
private parser;
private builder;
constructor();
parse(xml: string): Promise<any>;
stringify(obj: any, _options?: any): Promise<string>;
validate(xml: string, _schema: string): Promise<{
valid: boolean;
errors: string[];
}>;
extractElements(xml: string, xpath: string): Promise<any[]>;
private extractByPath;
}
//# sourceMappingURL=xml.service.d.ts.map