123456789101112131415161718192021222324252627282930313233 |
- "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 SelectedAPI
- * @hideconstructor
- */
- define([], function () {
- var SelectedAPI = function () {
- function SelectedAPI() {
- _classCallCheck(this, SelectedAPI);
- }
- /**
- * @param {object[]} tuple Each entry in the array corresponds to the itemIds array.
- * @example [ {u:'2005'}, {u:'Fax'} ]
- * @return {boolean} true if the tuple items are included in the current selections.
- */
- SelectedAPI.prototype.isSelected = function isSelected() {};
- return SelectedAPI;
- }();
- return SelectedAPI;
- });
- //# sourceMappingURL=SelectedAPI.js.map
|