1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define([], function () {
- var DeprecatedSmartsRecommenderAPI = function () {
- function DeprecatedSmartsRecommenderAPI() {
- _classCallCheck(this, DeprecatedSmartsRecommenderAPI);
- }
-
- DeprecatedSmartsRecommenderAPI.prototype.recommendAlternateVisualizationsAsWidgetSpecs = function recommendAlternateVisualizationsAsWidgetSpecs() {};
-
- DeprecatedSmartsRecommenderAPI.prototype.recommendRelatedVisualizationsAsWidgetSpecs = function recommendRelatedVisualizationsAsWidgetSpecs() {};
-
- DeprecatedSmartsRecommenderAPI.prototype.transformRecommendationsToLiveWidgetSpecs = function transformRecommendationsToLiveWidgetSpecs() {};
- return DeprecatedSmartsRecommenderAPI;
- }();
- return DeprecatedSmartsRecommenderAPI;
- });
|