PropertiesPaneAPI.js 1009 B

12345678910111213141516171819202122232425262728293031323334
  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 SlideoutAPI
  10. * @hideconstructor
  11. * @classdesc Internal API class that is used to manage the properties API.
  12. */
  13. define([], function () {
  14. var PropertiesPaneAPI = function () {
  15. function PropertiesPaneAPI() {
  16. _classCallCheck(this, PropertiesPaneAPI);
  17. }
  18. /**
  19. * @function PropertiesPaneAPI#getProviderId
  20. * @description Get the provider id of the properties feature
  21. * @return {String}
  22. */
  23. PropertiesPaneAPI.prototype.getProviderId = function getProviderId() {};
  24. return PropertiesPaneAPI;
  25. }();
  26. return PropertiesPaneAPI;
  27. });
  28. //# sourceMappingURL=PropertiesPaneAPI.js.map