"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 DashboardSettingsAPI * @hideconstructor * @classdesc API interface to be implemented as a bootstrap feature in order to provide global dashboard settings * @example dashboardAPI.getFeature('DashboardSettings') */ var DashboardSettingsAPI = function () { function DashboardSettingsAPI() { _classCallCheck(this, DashboardSettingsAPI); } /** * Returns the setting corresponding to the given name * @param {string} name Name of the setting * @return {object} Value of the setting; undefined if the setting does not exist * @example dashboardAPI.getFeature('DashboardSettings').get('fonts') */ DashboardSettingsAPI.prototype.get = function get() {}; return DashboardSettingsAPI; }(); return DashboardSettingsAPI; }); //# sourceMappingURL=DashboardSettingsAPI.js.map