UNPKG

react-native-mathjax-html-to-svg

Version:

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

24 lines (23 loc) 780 B
import { PropertyList } from '../../Tree/Node.js'; import { AbstractMmlBaseNode, AttributeList } from '../MmlNode.js'; export declare class MmlMsubsup extends AbstractMmlBaseNode { static defaults: PropertyList; get kind(): string; get arity(): number; get base(): number; get sub(): number; get sup(): number; protected setChildInheritedAttributes(attributes: AttributeList, display: boolean, level: number, prime: boolean): void; } export declare class MmlMsub extends MmlMsubsup { static defaults: PropertyList; get kind(): string; get arity(): number; } export declare class MmlMsup extends MmlMsubsup { static defaults: PropertyList; get kind(): string; get arity(): number; get sup(): number; get sub(): number; }