Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

index.js 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. Object.defineProperty(exports, "VISITOR_KEYS", {
  6. enumerable: true,
  7. get: function () {
  8. return _utils.VISITOR_KEYS;
  9. }
  10. });
  11. Object.defineProperty(exports, "ALIAS_KEYS", {
  12. enumerable: true,
  13. get: function () {
  14. return _utils.ALIAS_KEYS;
  15. }
  16. });
  17. Object.defineProperty(exports, "FLIPPED_ALIAS_KEYS", {
  18. enumerable: true,
  19. get: function () {
  20. return _utils.FLIPPED_ALIAS_KEYS;
  21. }
  22. });
  23. Object.defineProperty(exports, "NODE_FIELDS", {
  24. enumerable: true,
  25. get: function () {
  26. return _utils.NODE_FIELDS;
  27. }
  28. });
  29. Object.defineProperty(exports, "BUILDER_KEYS", {
  30. enumerable: true,
  31. get: function () {
  32. return _utils.BUILDER_KEYS;
  33. }
  34. });
  35. Object.defineProperty(exports, "DEPRECATED_KEYS", {
  36. enumerable: true,
  37. get: function () {
  38. return _utils.DEPRECATED_KEYS;
  39. }
  40. });
  41. Object.defineProperty(exports, "NODE_PARENT_VALIDATIONS", {
  42. enumerable: true,
  43. get: function () {
  44. return _utils.NODE_PARENT_VALIDATIONS;
  45. }
  46. });
  47. Object.defineProperty(exports, "PLACEHOLDERS", {
  48. enumerable: true,
  49. get: function () {
  50. return _placeholders.PLACEHOLDERS;
  51. }
  52. });
  53. Object.defineProperty(exports, "PLACEHOLDERS_ALIAS", {
  54. enumerable: true,
  55. get: function () {
  56. return _placeholders.PLACEHOLDERS_ALIAS;
  57. }
  58. });
  59. Object.defineProperty(exports, "PLACEHOLDERS_FLIPPED_ALIAS", {
  60. enumerable: true,
  61. get: function () {
  62. return _placeholders.PLACEHOLDERS_FLIPPED_ALIAS;
  63. }
  64. });
  65. exports.TYPES = void 0;
  66. var _toFastProperties = require("to-fast-properties");
  67. require("./core");
  68. require("./flow");
  69. require("./jsx");
  70. require("./misc");
  71. require("./experimental");
  72. require("./typescript");
  73. var _utils = require("./utils");
  74. var _placeholders = require("./placeholders");
  75. _toFastProperties(_utils.VISITOR_KEYS);
  76. _toFastProperties(_utils.ALIAS_KEYS);
  77. _toFastProperties(_utils.FLIPPED_ALIAS_KEYS);
  78. _toFastProperties(_utils.NODE_FIELDS);
  79. _toFastProperties(_utils.BUILDER_KEYS);
  80. _toFastProperties(_utils.DEPRECATED_KEYS);
  81. _toFastProperties(_placeholders.PLACEHOLDERS_ALIAS);
  82. _toFastProperties(_placeholders.PLACEHOLDERS_FLIPPED_ALIAS);
  83. const TYPES = Object.keys(_utils.VISITOR_KEYS).concat(Object.keys(_utils.FLIPPED_ALIAS_KEYS)).concat(Object.keys(_utils.DEPRECATED_KEYS));
  84. exports.TYPES = TYPES;