You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
607 B

  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;