123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- "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. 2019
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class ContentActionsAPI
- * @hideconstructor
- * @classdesc API class that is used to obtain the list of content actions available
- */
- define([], function () {
- var ContentActionsAPI = function () {
- function ContentActionsAPI() {
- _classCallCheck(this, ContentActionsAPI);
- }
- /**
- * @function ContentActionsAPI#registerProvider
- * @description Register a provider as a content actions provider
- * @param {name} name of the provider
- * @param {provider} provider ContentAction provider to register and contribute to content actions
- */
- ContentActionsAPI.prototype.registerProvider = function registerProvider() /* provider */{};
- /**
- * @function ContentActionsAPI#getContentActionList
- * @description Returns a list of ContentActions available for a specific item given a list of widget ids.
- * @param {array} idList list of widget ids
- * @return {array} array containing all available actions
- */
- ContentActionsAPI.prototype.getContentActionList = function getContentActionList() /* idList */{};
- return ContentActionsAPI;
- }();
- return ContentActionsAPI;
- });
- //# sourceMappingURL=ContentActionsAPI.js.map
|