UNPKG

xml-class-transformer

Version:

Fluently parse XML into beautiful JS/TS classes and serialize them. GoLang's encoding/xml alternative for JS/TS world.

6 lines (5 loc) 420 B
export { classToXml } from './transform-class-to-xml'; export { xmlToClass } from './transform-xml-to-class'; export { XmlElem, XmlChildElem, XmlAttribute, XmlChardata, XmlComments, } from './decorators'; export type { XmlClass, ClassToXmlOptions, XmlElemOptions, XmlChildElemOptions, XmlAttributeOptions, XmlChardataOptions, XmlPrimitiveType, XmlType, } from './types'; export type { Marshaller } from './marshallers';