react-native-mathjax-html-to-svg
Version:
React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)
14 lines (13 loc) • 464 B
TypeScript
export interface PrioritizedListItem<DataClass> {
priority: number;
item: DataClass;
}
export declare class PrioritizedList<DataClass> {
static DEFAULTPRIORITY: number;
protected items: PrioritizedListItem<DataClass>[];
constructor();
[Symbol.iterator](): Iterator<PrioritizedListItem<DataClass>>;
add(item: DataClass, priority?: number): DataClass;
remove(item: DataClass): void;
toArray(): PrioritizedListItem<DataClass>[];
}