Source: components/Component.js

  1. 'use strict';
  2. /**
  3. * These form the basis of nodesu.
  4. * @module Components
  5. * @example
  6. * <Client>.<component>
  7. * // where <component> is the the component name lower-cased (BeatmapComponent -> <Client>.beatmap)
  8. */
  9. class Component {
  10. constructor(api) {
  11. this.api = api;
  12. }
  13. }
  14. module.exports = Component;