ContentActionsProviderAPI.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. "use strict";
  2. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  3. /*
  4. * Licensed Materials - Property of IBM
  5. * IBM Business Analytics (C) Copyright IBM Corp. 2019
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /**
  9. * @class ContentActionsProviderAPI
  10. * @hideconstructor
  11. * @classdesc API class that is used to implement a content action provider for the purpose of contributing a content action
  12. */
  13. define([], function () {
  14. var ContentActionsProviderAPI = function () {
  15. function ContentActionsProviderAPI() {
  16. _classCallCheck(this, ContentActionsProviderAPI);
  17. }
  18. /**
  19. * @function ContentActionsProviderAPI#getContentActionList
  20. * @description Returns a list of content actions available contents.
  21. * @param {idList} idList
  22. * @return {array} array containing all available actions
  23. */
  24. ContentActionsProviderAPI.prototype.getContentActionList = function getContentActionList() {};
  25. return ContentActionsProviderAPI;
  26. }();
  27. return ContentActionsProviderAPI;
  28. });
  29. //# sourceMappingURL=ContentActionsProviderAPI.js.map