UNPKG

@mos-connection/helper

Version:

Helper functions for the MOS-connection library

15 lines 940 B
import * as XMLBuilder from 'xmlbuilder'; import { AnyXMLValue, IMOSListSearchableSchema, IMOSObjectList, IMOSRequestObjectList } from '@mos-connection/model'; export declare namespace XMLMosRequestObjectList { function fromXML(path: string, xml: AnyXMLValue, strict: boolean): IMOSRequestObjectList; function toXML(xml: XMLBuilder.XMLElement, objList: IMOSRequestObjectList, strict: boolean): void; } export declare namespace XMLMosObjectList { function fromXML(path: string, xml: AnyXMLValue, strict: boolean): IMOSObjectList; function toXML(xml: XMLBuilder.XMLElement, objList: IMOSObjectList, strict: boolean): void; } export declare namespace XMLMosListSearchableSchema { function fromXML(path: string, xml: AnyXMLValue, strict: boolean): IMOSListSearchableSchema; function toXML(xml: XMLBuilder.XMLElement, schema: IMOSListSearchableSchema, strict: boolean): void; } //# sourceMappingURL=xmlConversion.d.ts.map