123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- "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 LegacyViewControllersAPI
- * @hideconstructor
- * @classdesc API class that can be used to create and access legacy layoutController and widgetLoader
- */
- define([], function () {
- var LegacyViewControllersAPI = function () {
- function LegacyViewControllersAPI() {
- _classCallCheck(this, LegacyViewControllersAPI);
- }
- /**
- * @description Get the layoutController object
- * @return {object} the layoutController
- */
- LegacyViewControllersAPI.prototype.getLayoutController = function getLayoutController() {};
- /**
- * @description Get the widgetLoader object
- * @return {object} the widgetLoader
- */
- LegacyViewControllersAPI.prototype.getWidgetLoader = function getWidgetLoader() {};
- /**
- * @description Calls destroy on the layoutController and the widgetLoader
- */
- LegacyViewControllersAPI.prototype.destroy = function destroy() {};
- return LegacyViewControllersAPI;
- }();
- return LegacyViewControllersAPI;
- });
- //# sourceMappingURL=LegacyViewControllersAPI.js.map
|