react-native-mathjax-html-to-svg
Version:
React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)
17 lines (16 loc) • 469 B
TypeScript
export declare type StyleData = {
[property: string]: string | number;
};
export declare type StyleList = {
[selector: string]: StyleData;
};
export declare class CssStyles {
protected styles: StyleList;
get cssText(): string;
constructor(styles?: StyleList);
addStyles(styles: StyleList): void;
removeStyles(...selectors: string[]): void;
clear(): void;
getStyleString(): string;
getStyleDefString(styles: StyleData): string;
}