123456789101112131415161718192021222324252627282930313233343536 |
- "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 DataPointActionsProviderAPI
- * @hideconstructor
- * @classdesc API class that is used to implement a slot action provider for the purpose of contributing a slot action
- */
- define([], function () {
- var DataPointActionsProviderAPI = function () {
- function DataPointActionsProviderAPI() {
- _classCallCheck(this, DataPointActionsProviderAPI);
- }
- /**
- * @function DataPointActionsProviderAPI#getDataPointActionList
- * @description Returns a list of data point actions available for specific selections.
- * @param {selections} selections
- * @param {options} action's options
- * @return {array} array containing all available actions
- */
- DataPointActionsProviderAPI.prototype.getDataPointActionList = function getDataPointActionList() {};
- return DataPointActionsProviderAPI;
- }();
- return DataPointActionsProviderAPI;
- });
- //# sourceMappingURL=DataPointActionsProviderAPI.js.map
|