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.

plugin.js 744B

123456789101112131415161718192021222324252627282930
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. class Plugin {
  7. constructor(plugin, options, key) {
  8. this.key = void 0;
  9. this.manipulateOptions = void 0;
  10. this.post = void 0;
  11. this.pre = void 0;
  12. this.visitor = void 0;
  13. this.parserOverride = void 0;
  14. this.generatorOverride = void 0;
  15. this.options = void 0;
  16. this.key = plugin.name || key;
  17. this.manipulateOptions = plugin.manipulateOptions;
  18. this.post = plugin.post;
  19. this.pre = plugin.pre;
  20. this.visitor = plugin.visitor || {};
  21. this.parserOverride = plugin.parserOverride;
  22. this.generatorOverride = plugin.generatorOverride;
  23. this.options = options;
  24. }
  25. }
  26. exports.default = Plugin;