react-native-mathjax-html-to-svg
Version:
React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)
11 lines (10 loc) • 348 B
TypeScript
import { BaseItem, CheckType, StackItem } from '../StackItem.js';
import { MmlNode } from '../../../core/MmlTree/MmlNode.js';
export declare class ProofTreeItem extends BaseItem {
leftLabel: MmlNode[];
rigthLabel: MmlNode[];
private innerStack;
get kind(): string;
checkItem(item: StackItem): CheckType;
toMml(): MmlNode;
}