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. 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class SlotActionsProviderAPI
- * @hideconstructor
- * @classdesc API class that is used to implement a slot action provider for the purpose of contributing a slot action
- */
- define([], function () {
- var TopBottomActionAPI = function () {
- function TopBottomActionAPI() {
- _classCallCheck(this, TopBottomActionAPI);
- }
- /**
- * @function TopBottomActionAPI#reset
- * @description Resets the top/bottom operation on a given data item
- * @param {dataSlotId} id of the dataSlot
- * @param {itemIndex} index of the dataItem
- */
- TopBottomActionAPI.prototype.reset = function reset() /* dataSlotId, itemIndex */{};
- return TopBottomActionAPI;
- }();
- return TopBottomActionAPI;
- });
- //# sourceMappingURL=TopBottomActionAPI.js.map
|