1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- "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, 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define([], function () {
- /**
- * @interface InternalModelsAPI
- * @hideconstructor
- * @classdesc API class that is used to retrieve the widgetModel and
- * layoutModel from a content
- */
- var InternalModelsAPI = function () {
- function InternalModelsAPI() {
- _classCallCheck(this, InternalModelsAPI);
- }
- /**
- * @returns {object} the content's WidgetModel object
- */
- InternalModelsAPI.prototype.getWidgetModel = function getWidgetModel() {};
- /**
- * @returns {object} The content's LayoutModel object
- */
- InternalModelsAPI.prototype.getLayoutModel = function getLayoutModel() {};
- /**
- * @returns {object} A JS object representing the WidgetModel
- */
- InternalModelsAPI.prototype.toJSON = function toJSON() {};
- return InternalModelsAPI;
- }();
- return InternalModelsAPI;
- });
- //# sourceMappingURL=InternalModelsAPI.js.map
|