12345678910111213141516171819202122232425262728293031323334 |
- "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. 2019, 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class ConvertToTemplateAPI
- * @hideconstructor
- * @classdesc A utility feature to convert dashboard specs into dashboard templates
- */
- define([], function () {
- var ConvertToTemplateAPI = function () {
- function ConvertToTemplateAPI() {
- _classCallCheck(this, ConvertToTemplateAPI);
- }
- /**
- * @description Converts a given dashboard spec into a dashboard template spec
- * @param {object} dashboardSpec The dashboard spec to be converted into a dashboard template spec
- * @returns {Promise} Resolves to the converted dashboard template spec
- */
- ConvertToTemplateAPI.prototype.convertToTemplate = function convertToTemplate() {};
- return ConvertToTemplateAPI;
- }();
- return ConvertToTemplateAPI;
- });
- //# sourceMappingURL=ConvertToTemplateAPI.js.map
|