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 ThemeProviderAPI
- * @classdesc API class that defines the user profile info accessible in a dashboard
- */
- var ThemeProviderAPI = function () {
- function ThemeProviderAPI() {
- _classCallCheck(this, ThemeProviderAPI);
- }
- /**
- * Loads the the theme definition for the provided theme name
- * @param {String} themeName - the name of the theme to load, default theme name is "defaultTheme"
- * @return {Promise} returns a Promise that resolves to the loaded theme definition or if it fails, resolves to the default theme provider
- */
- ThemeProviderAPI.prototype.loadThemeDefinition = function loadThemeDefinition() {};
- return ThemeProviderAPI;
- }();
- return ThemeProviderAPI;
- });
- //# sourceMappingURL=ThemeProviderAPI.js.map
|