SelectedAPI.js 967 B

123456789101112131415161718192021222324252627282930313233
  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. 2019
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /**
  9. * @class SelectedAPI
  10. * @hideconstructor
  11. */
  12. define([], function () {
  13. var SelectedAPI = function () {
  14. function SelectedAPI() {
  15. _classCallCheck(this, SelectedAPI);
  16. }
  17. /**
  18. * @param {object[]} tuple Each entry in the array corresponds to the itemIds array.
  19. * @example [ {u:'2005'}, {u:'Fax'} ]
  20. * @return {boolean} true if the tuple items are included in the current selections.
  21. */
  22. SelectedAPI.prototype.isSelected = function isSelected() {};
  23. return SelectedAPI;
  24. }();
  25. return SelectedAPI;
  26. });
  27. //# sourceMappingURL=SelectedAPI.js.map