mtext.js 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. "use strict";
  2. var __extends = (this && this.__extends) || (function () {
  3. var extendStatics = function (d, b) {
  4. extendStatics = Object.setPrototypeOf ||
  5. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  6. function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
  7. return extendStatics(d, b);
  8. };
  9. return function (d, b) {
  10. if (typeof b !== "function" && b !== null)
  11. throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
  12. extendStatics(d, b);
  13. function __() { this.constructor = d; }
  14. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  15. };
  16. })();
  17. Object.defineProperty(exports, "__esModule", { value: true });
  18. exports.SVGmtext = void 0;
  19. var Wrapper_js_1 = require("../Wrapper.js");
  20. var mtext_js_1 = require("../../common/Wrappers/mtext.js");
  21. var mtext_js_2 = require("../../../core/MmlTree/MmlNodes/mtext.js");
  22. var SVGmtext = (function (_super) {
  23. __extends(SVGmtext, _super);
  24. function SVGmtext() {
  25. return _super !== null && _super.apply(this, arguments) || this;
  26. }
  27. SVGmtext.kind = mtext_js_2.MmlMtext.prototype.kind;
  28. return SVGmtext;
  29. }((0, mtext_js_1.CommonMtextMixin)(Wrapper_js_1.SVGWrapper)));
  30. exports.SVGmtext = SVGmtext;
  31. //# sourceMappingURL=mtext.js.map