123456789101112131415161718192021222324252627282930313233343536 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: Dashboard
- * IBM Business Analytics (C) Copyright IBM Corp. 2019
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class InternalRecommenderAPI
- * @hideconstructor
- * @classdesc
- */
- define([], function () {
- var InternalRecommenderAPI = function () {
- function InternalRecommenderAPI() {
- _classCallCheck(this, InternalRecommenderAPI);
- }
- /**
- * @public
- * @function InternalRecommenderAPI#getChartTypeList
- * @description provides the list of available chart types
- * @return {String[]} array of chart types
- */
- InternalRecommenderAPI.prototype.getChartTypeList = function getChartTypeList() {};
- return InternalRecommenderAPI;
- }();
- return InternalRecommenderAPI;
- });
- //# sourceMappingURL=InternalRecommenderAPI.js.map
|