12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- "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 Business Analytics (C) Copyright IBM Corp. 2018, 2019
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class SmartRecommenderAPI
- * @hideconstructor
- *
- * @classdesc
- */
- define([], function () {
- var SmartsRecommenderAPI = function () {
- function SmartsRecommenderAPI() {
- _classCallCheck(this, SmartsRecommenderAPI);
- }
- /**
- * @function SmartsRecommenderAPI#recommendAlternateContent
- * @description Recommend alternate contents
- * @public
- *
- * @param {ContentAPI} content
- * @return {ContentAPI[]} list of alternate content
- *
- */
- SmartsRecommenderAPI.prototype.recommendAlternateContent = function recommendAlternateContent() {};
- /**
- * @function SmartsRecommenderAPI#recommendRelatedContent
- * @description Recommend related contents
- * @public
- *
- * @param {ContentAPI} content
- * @return {ContentAPI[]} list of related content
- *
- */
- SmartsRecommenderAPI.prototype.recommendRelatedContent = function recommendRelatedContent() {};
- return SmartsRecommenderAPI;
- }();
- return SmartsRecommenderAPI;
- });
- //# sourceMappingURL=SmartsRecommenderAPI.js.map
|