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. 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define([], function () {
- /**
- * @interface DashboardThemeAPI
- * @classdesc API class that defines the user profile info accessible in a dashboard
- */
- var DashboardThemeAPI = function () {
- function DashboardThemeAPI() {
- _classCallCheck(this, DashboardThemeAPI);
- }
- /**
- * Gets the theme definition
- * @param {String} themeName - the name of the theme to load, default theme name is "defaultTheme"
- * @return {Promise} resolves to the loaded theme definition or if failed to load - resolves to the default theme definition or throws error if failed again
- */
- DashboardThemeAPI.prototype.getThemeDefinition = function getThemeDefinition() {};
- return DashboardThemeAPI;
- }();
- return DashboardThemeAPI;
- });
- //# sourceMappingURL=DashboardThemeAPI.js.map
|