react-native-mathjax-html-to-svg
Version:
React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)
10 lines (9 loc) • 388 B
TypeScript
import { AnyWrapper, WrapperConstructor, Constructor } from '../Wrapper.js';
export interface CommonMglyph extends AnyWrapper {
width: number;
height: number;
valign: number;
getParameters(): void;
}
export declare type MglyphConstructor = Constructor<CommonMglyph>;
export declare function CommonMglyphMixin<T extends WrapperConstructor>(Base: T): MglyphConstructor & T;