123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- "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 DataPointActionsAPI
- * @hideconstructor
- * @classdesc API class that is used to obtain the list of data point actions available
- */
- define([], function () {
- var DataPointActionsAPI = function () {
- function DataPointActionsAPI() {
- _classCallCheck(this, DataPointActionsAPI);
- }
- /**
- * @function DataPointActionsAPI#registerProvider
- * @description Register a provider as a data point actions provider
- * @param {name} name of the provider
- * @param {provider} provider DataPointAction provider to register and contribute to data point actions
- */
- DataPointActionsAPI.prototype.registerProvider = function registerProvider() /* provider */{};
- /**
- * @function DataPointActionsAPI#getDataPointActionList
- * @description Returns a list of dataPointActions available for a specific item given a data point list.
- * @param {array} selections list of data points selected
- * @return {array} array containing all available actions
- */
- DataPointActionsAPI.prototype.getDataPointActionList = function getDataPointActionList() /* selections */{};
- return DataPointActionsAPI;
- }();
- return DataPointActionsAPI;
- });
- //# sourceMappingURL=DataPointActionsAPI.js.map
|