1234567891011121314151617181920212223242526272829303132333435 |
- "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 ContentActionsProviderAPI
- * @hideconstructor
- * @classdesc API class that is used to implement a content action provider for the purpose of contributing a content action
- */
- define([], function () {
- var ContentActionsProviderAPI = function () {
- function ContentActionsProviderAPI() {
- _classCallCheck(this, ContentActionsProviderAPI);
- }
- /**
- * @function ContentActionsProviderAPI#getContentActionList
- * @description Returns a list of content actions available contents.
- * @param {idList} idList
- * @return {array} array containing all available actions
- */
- ContentActionsProviderAPI.prototype.getContentActionList = function getContentActionList() {};
- return ContentActionsProviderAPI;
- }();
- return ContentActionsProviderAPI;
- });
- //# sourceMappingURL=ContentActionsProviderAPI.js.map
|