FeatureLoaderAPI.js 999 B

1234567891011121314151617181920212223242526272829303132333435
  1. "use strict";
  2. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  3. /*
  4. * Licensed Materials - Property of IBM
  5. * IBM Business Analytics (C) Copyright IBM Corp. 2019
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /**
  9. * @class FeatureLoaderAPI
  10. * @hideconstructor
  11. * @classdesc API class that is used to register features
  12. */
  13. define([], function () {
  14. var FeatureLoaderAPI = function () {
  15. function FeatureLoaderAPI() {
  16. _classCallCheck(this, FeatureLoaderAPI);
  17. }
  18. /**
  19. * @function FeatureLoaderAPI#registerFeature
  20. * @description Register a feature
  21. * @param {String} name
  22. * @param {Object} feature
  23. */
  24. FeatureLoaderAPI.prototype.registerFeature = function registerFeature() {};
  25. return FeatureLoaderAPI;
  26. }();
  27. return FeatureLoaderAPI;
  28. });
  29. //# sourceMappingURL=FeatureLoaderAPI.js.map