site/node_modules/rehype-mathjax/lib/svg.d.ts
2024-10-14 08:09:33 +02:00

12 lines
388 B
TypeScript

export default rehypeMathJaxSvg;
/**
* Render elements with a `language-math` (or `math-display`, `math-inline`)
* class with MathJax using SVG.
*
* @param [options]
* Configuration (optional).
* @returns
* Transform.
*/
declare const rehypeMathJaxSvg: (options?: Readonly<import("./create-plugin.js").Options> | null | undefined) => (tree: import("hast").Root) => undefined;