DataPointActionsProviderAPI.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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 DataPointActionsProviderAPI
  10. * @hideconstructor
  11. * @classdesc API class that is used to implement a slot action provider for the purpose of contributing a slot action
  12. */
  13. define([], function () {
  14. var DataPointActionsProviderAPI = function () {
  15. function DataPointActionsProviderAPI() {
  16. _classCallCheck(this, DataPointActionsProviderAPI);
  17. }
  18. /**
  19. * @function DataPointActionsProviderAPI#getDataPointActionList
  20. * @description Returns a list of data point actions available for specific selections.
  21. * @param {selections} selections
  22. * @param {options} action's options
  23. * @return {array} array containing all available actions
  24. */
  25. DataPointActionsProviderAPI.prototype.getDataPointActionList = function getDataPointActionList() {};
  26. return DataPointActionsProviderAPI;
  27. }();
  28. return DataPointActionsProviderAPI;
  29. });
  30. //# sourceMappingURL=DataPointActionsProviderAPI.js.map