UNPKG

react-native-mathjax-html-to-svg

Version:

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

14 lines (13 loc) 537 B
import { MmlFactory } from '../MmlFactory.js'; import { PropertyList } from '../../Tree/Node.js'; import { AbstractMmlBaseNode, MmlNode } from '../MmlNode.js'; export declare class TeXAtom extends AbstractMmlBaseNode { static defaults: PropertyList; protected texclass: number; get kind(): string; get arity(): number; get notParent(): boolean; constructor(factory: MmlFactory, attributes: PropertyList, children: MmlNode[]); setTeXclass(prev: MmlNode): MmlNode; adjustTeXclass(prev: MmlNode): MmlNode; }