12345678910111213141516171819202122232425262728293031323334353637383940 |
- "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. 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define([], function () {
- /**
- * @interface DashboardCoreAPI
- * @classdesc API class that is used to manage a dashboard.
- */
- var DashboardCoreAPI = function () {
- function DashboardCoreAPI() {
- _classCallCheck(this, DashboardCoreAPI);
- }
- /**
- * @description Returns the feature with the specified feature name.
- * @param {string} name - Unique name of the feature
- * @return {object} Feature API object; undefined if not found
- */
- DashboardCoreAPI.prototype.getFeature = function getFeature() {};
- /**
- * @description Destroys the dashboard.
- */
- DashboardCoreAPI.prototype.destroy = function destroy() {};
- return DashboardCoreAPI;
- }();
- return DashboardCoreAPI;
- });
- //# sourceMappingURL=DashboardCoreAPI.js.map
|