react-native-mathjax-html-to-svg
Version:
React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)
28 lines (27 loc) • 1.17 kB
TypeScript
import { CHTMLWrapper } from '../Wrapper.js';
import { BBox } from '../../../util/BBox.js';
import { StyleList } from '../../../util/StyleList.js';
declare const CHTMLsemantics_base: import("mathjax-full/ts/output/common/Wrapper").Constructor<import("mathjax-full/ts/output/common/Wrappers/semantics").CommonSemantics> & import("mathjax-full/ts/output/common/Wrapper").Constructor<CHTMLWrapper<any, any, any>>;
export declare class CHTMLsemantics<N, T, D> extends CHTMLsemantics_base {
static kind: string;
toCHTML(parent: N): void;
}
export declare class CHTMLannotation<N, T, D> extends CHTMLWrapper<N, T, D> {
static kind: string;
toCHTML(parent: N): void;
computeBBox(): BBox;
}
export declare class CHTMLannotationXML<N, T, D> extends CHTMLWrapper<N, T, D> {
static kind: string;
static styles: StyleList;
}
export declare class CHTMLxml<N, T, D> extends CHTMLWrapper<N, T, D> {
static kind: string;
static autoStyle: boolean;
toCHTML(parent: N): void;
computeBBox(bbox: BBox, _recompute?: boolean): void;
protected getStyles(): void;
protected getScale(): void;
protected getVariant(): void;
}
export {};