libxslt-wasm
Version:
JavaScript bindings for libxslt compiled to WebAssembly
19 lines (18 loc) • 612 B
TypeScript
import { exsltRegisterAll } from "../internal/libexslt.ts";
declare const EXSLT_MODULES_MAP: {
common: () => void;
math: () => void;
sets: () => void;
functions: () => void;
"dates-and-times": () => void;
strings: () => void;
dynamic: () => void;
/**
* Registers the SAXON extension module (`expression()`, `eval()`, `evaluate()`,
* `line-number()`, `systemId()`)
*/
saxon: () => void;
};
type ExsltModule = keyof typeof EXSLT_MODULES_MAP;
declare const registerModule: (module: ExsltModule) => void;
export { registerModule, exsltRegisterAll as registerAll };