UNPKG

react-native-mathjax-html-to-svg

Version:

React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)

15 lines (14 loc) 502 B
export declare class BitField { protected static MAXBIT: number; protected static next: number; protected static names: Map<string, number>; protected bits: number; static allocate(...names: string[]): void; static has(name: string): boolean; set(name: string): void; clear(name: string): void; isSet(name: string): boolean; reset(): void; protected getBit(name: string): number; } export declare function BitFieldClass(...names: string[]): typeof BitField;