12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- "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 Cognos Products: BI Cloud (C) Copyright IBM Corp. 2019, 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @interface TextEditorAPI
- * @hideconstructor
- * @classdesc TextEditor feature
- * @example dashboard.getFeature('TextEditor')
- */
- define([], function () {
- var TextEditorAPI = function () {
- function TextEditorAPI() {
- _classCallCheck(this, TextEditorAPI);
- }
- /**
- * @returns {Array} An array of all custom colors a widget title editor is using
- */
- TextEditorAPI.prototype.getCustomColorList = function getCustomColorList() {};
- /**
- * @param {Object} title which has the following structure
- * @param {String} title.widgetId the widget which the title belongs to
- * @param {TextEditor} title.textEditor The TextEditor instance for the widget's title
- * @param {String} title.titleId
- */
- TextEditorAPI.prototype.registerProvider = function registerProvider() {};
- return TextEditorAPI;
- }();
- return TextEditorAPI;
- });
- //# sourceMappingURL=TextEditorAPI.js.map
|