DOMProviderAPI.js 1.1 KB

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. 2020
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /**
  9. * @class DOMProviderAPI
  10. * @hideconstructor
  11. * @classdesc API class that is used to get a JSON representation of the the UI of the widget
  12. */
  13. define([], function () {
  14. var DOMProviderAPI = function () {
  15. function DOMProviderAPI() {
  16. _classCallCheck(this, DOMProviderAPI);
  17. }
  18. /**
  19. * @function DOMProviderAPI#getUIJSON
  20. * @description get a JSON representation of the the UI of widget
  21. * @returns {Object} UIJSON A JSON representation of the UI of the widget
  22. */
  23. DOMProviderAPI.prototype.getUIJSON = function getUIJSON() {};
  24. return DOMProviderAPI;
  25. }();
  26. return DOMProviderAPI;
  27. });
  28. //# sourceMappingURL=DOMProviderAPI.js.map