UNPKG

@qtikit/mathml-to-latex

Version:

A JavaScript tool to convert mathml string to LaTeX string

14 lines (13 loc) 363 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MPhantom = void 0; var MPhantom = /** @class */ (function () { function MPhantom(mathElement) { this._mathmlElement = mathElement; } MPhantom.prototype.convert = function () { return ''; }; return MPhantom; }()); exports.MPhantom = MPhantom;