12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- "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 LiveWidgetInternalAPI
- * @hideconstructor
- * @classdesc Internal API class that is used to return widget/visview related
- */
- define([], function () {
- var LiveWidgetInternalAPI = function () {
- function LiveWidgetInternalAPI() {
- _classCallCheck(this, LiveWidgetInternalAPI);
- }
- /**
- * @function LiveWidgetInternalAPI#getWidget
- * @description Get the widget
- * @return {Widget} Internal ID of the widget
- */
- LiveWidgetInternalAPI.prototype.getWidget = function getWidget() {};
- /**
- * @function LiveWidgetInternalAPI#getVisView
- * @description Get the current view
- * @return {visview} The type of the cansas content
- */
- LiveWidgetInternalAPI.prototype.getVisView = function getVisView() {};
- return LiveWidgetInternalAPI;
- }();
- return LiveWidgetInternalAPI;
- });
- //# sourceMappingURL=LiveWidgetInternalAPI.js.map
|