react-native-mathjax-html-to-svg
Version:
React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)
7 lines (6 loc) • 371 B
TypeScript
import { AnyWrapper, WrapperConstructor, Constructor } from '../Wrapper.js';
export interface CommonTextNode extends AnyWrapper {
remappedText(text: string, variant: string): number[];
}
export declare type TextNodeConstructor = Constructor<CommonTextNode>;
export declare function CommonTextNodeMixin<T extends WrapperConstructor>(Base: T): TextNodeConstructor & T;