react-native-mathjax-html-to-svg
Version:
React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)
22 lines • 670 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbstractWrapper = void 0;
var AbstractWrapper = (function () {
function AbstractWrapper(factory, node) {
this.factory = factory;
this.node = node;
}
Object.defineProperty(AbstractWrapper.prototype, "kind", {
get: function () {
return this.node.kind;
},
enumerable: false,
configurable: true
});
AbstractWrapper.prototype.wrap = function (node) {
return this.factory.wrap(node);
};
return AbstractWrapper;
}());
exports.AbstractWrapper = AbstractWrapper;
//# sourceMappingURL=Wrapper.js.map