Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
123456789101112131415161718192021222324
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var _h2xTypes = require("h2x-types");
  7. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  8. class JSXText {
  9. constructor() {
  10. _defineProperty(this, "text", null);
  11. }
  12. }
  13. _defineProperty(JSXText, _h2xTypes.NODE_TYPE, 'JSXText');
  14. _defineProperty(JSXText, _h2xTypes.VISITOR_KEYS, null);
  15. var _default = JSXText;
  16. exports.default = _default;