InternalRecommenderAPI.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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 Cognos Products: Dashboard
  6. * IBM Business Analytics (C) Copyright IBM Corp. 2019
  7. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  8. */
  9. /**
  10. * @class InternalRecommenderAPI
  11. * @hideconstructor
  12. * @classdesc
  13. */
  14. define([], function () {
  15. var InternalRecommenderAPI = function () {
  16. function InternalRecommenderAPI() {
  17. _classCallCheck(this, InternalRecommenderAPI);
  18. }
  19. /**
  20. * @public
  21. * @function InternalRecommenderAPI#getChartTypeList
  22. * @description provides the list of available chart types
  23. * @return {String[]} array of chart types
  24. */
  25. InternalRecommenderAPI.prototype.getChartTypeList = function getChartTypeList() {};
  26. return InternalRecommenderAPI;
  27. }();
  28. return InternalRecommenderAPI;
  29. });
  30. //# sourceMappingURL=InternalRecommenderAPI.js.map