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) • 528 B
TypeScript
import { SerializedMmlVisitor } from './SerializedMmlVisitor.js';
import { MmlNode } from './MmlNode.js';
import { PropertyList } from '../Tree/Node.js';
export declare class TestMmlVisitor extends SerializedMmlVisitor {
visitDefault(node: MmlNode, space: string): string;
protected getAttributes(node: MmlNode): string;
protected getInherited(node: MmlNode): string;
protected getProperties(node: MmlNode): string;
protected attributeString(attributes: PropertyList, open: string, close: string): string;
}