react-native-mathjax-html-to-svg
Version:
React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)
12 lines (11 loc) • 530 B
TypeScript
import { AnyWrapper, WrapperConstructor, Constructor } from '../Wrapper.js';
import { CommonInferredMrow } from './mrow.js';
import { MmlNode } from '../../../core/MmlTree/MmlNode.js';
export interface CommonMfenced extends AnyWrapper {
mrow: CommonInferredMrow;
createMrow(): void;
addMrowChildren(): void;
addMo(node: MmlNode): void;
}
export declare type MfencedConstructor = Constructor<CommonMfenced>;
export declare function CommonMfencedMixin<T extends WrapperConstructor>(Base: T): MfencedConstructor & T;