TopBottomActionAPI.js 1.1 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. 2020
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /**
  9. * @class SlotActionsProviderAPI
  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 TopBottomActionAPI = function () {
  15. function TopBottomActionAPI() {
  16. _classCallCheck(this, TopBottomActionAPI);
  17. }
  18. /**
  19. * @function TopBottomActionAPI#reset
  20. * @description Resets the top/bottom operation on a given data item
  21. * @param {dataSlotId} id of the dataSlot
  22. * @param {itemIndex} index of the dataItem
  23. */
  24. TopBottomActionAPI.prototype.reset = function reset() /* dataSlotId, itemIndex */{};
  25. return TopBottomActionAPI;
  26. }();
  27. return TopBottomActionAPI;
  28. });
  29. //# sourceMappingURL=TopBottomActionAPI.js.map