12345678910111213141516171819202122232425262728293031323334 |
- "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. 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class DOMProviderAPI
- * @hideconstructor
- * @classdesc API class that is used to get a JSON representation of the the UI of the widget
- */
- define([], function () {
- var DOMProviderAPI = function () {
- function DOMProviderAPI() {
- _classCallCheck(this, DOMProviderAPI);
- }
- /**
- * @function DOMProviderAPI#getUIJSON
- * @description get a JSON representation of the the UI of widget
- * @returns {Object} UIJSON A JSON representation of the UI of the widget
- */
- DOMProviderAPI.prototype.getUIJSON = function getUIJSON() {};
- return DOMProviderAPI;
- }();
- return DOMProviderAPI;
- });
- //# sourceMappingURL=DOMProviderAPI.js.map
|