UNPKG

libxml2-wasm

Version:

WebAssembly-based libxml2 javascript wrapper

21 lines (20 loc) 1.07 kB
/** * 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, XmlXPathError, NamespaceMap } from './xpath.mjs'; export { XmlAttribute, XmlCData, XmlComment, XmlElement, XmlEntityReference, XmlNamedNode, XmlNode, XmlSimpleNode, XmlText, XmlTreeNode, } from './nodes.mjs'; export { ParseOption, ParseOptions, XmlDocument, XmlParseError, } from './document.mjs'; export { ErrorDetail, SaveOptions, XmlError, XmlLibError, xmlCleanupInputProvider, XmlInputProvider, XmlOutputBufferHandler, xmlRegisterInputProvider, } from './libxml2.mjs'; export { XmlDtd } from './dtd.mjs'; export { DtdValidator, RelaxNGValidator, XsdValidator, XmlValidateError, } from './validates.mjs'; export { openBuffer, readBuffer, closeBuffer, XmlBufferInputProvider, } from './utils.mjs';