UNPKG

libxml2-wasm

Version:

WebAssembly-based libxml2 javascript wrapper

20 lines 907 B
/** * This is the main script of the library. * * After installing the library in your `node_modules` directory, * you can import the class and other elements like this: * * ```ts * import { <symbol> } from 'libxml2-wasm'; * ``` * @module libxml2-wasm */ export * as diag from './diag.mjs'; export * as disposable from './disposable.mjs'; export { XmlXPath } from './xpath.mjs'; export { XmlNode, XmlAttribute, XmlComment, XmlElement, XmlSimpleNode, XmlText, XmlTreeNode, XmlCData, } from './nodes.mjs'; export { ParseOption, XmlDocument, XmlParseError, } from './document.mjs'; export { XmlError, XmlLibError, xmlCleanupInputProvider, xmlRegisterInputProvider, } from './libxml2.mjs'; export { RelaxNGValidator, XsdValidator, XmlValidateError, } from './validates.mjs'; export { openBuffer, readBuffer, closeBuffer, XmlBufferInputProvider, } from './utils.mjs'; //# sourceMappingURL=index.mjs.map