UNPKG

react-native-mathjax-html-to-svg

Version:

React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)

9 lines (8 loc) 363 B
import { TextNode, XMLNode } from './MmlNode.js'; import { MmlFactory } from './MmlFactory.js'; import { AbstractVisitor } from '../Tree/Visitor.js'; export declare class MmlVisitor extends AbstractVisitor { constructor(factory?: MmlFactory); visitTextNode(_node: TextNode, ..._args: any[]): any; visitXMLNode(_node: XMLNode, ..._args: any[]): any; }