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) • 324 B
TypeScript
import { AnyWrapper, WrapperConstructor, Constructor } from '../Wrapper.js';
export interface CommonMs extends AnyWrapper {
createText(text: string): AnyWrapper;
}
export declare type MsConstructor = Constructor<CommonMs>;
export declare function CommonMsMixin<T extends WrapperConstructor>(Base: T): MsConstructor & T;