123456789101112131415161718192021222324252627282930313233 |
- "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 InternalAPI
- * @hideconstructor
- * @classdesc Internal API class that is used to control a dashboard instance behaviour
- */
- define([], function () {
- var InternalAPI = function () {
- function InternalAPI() {
- _classCallCheck(this, InternalAPI);
- }
- /**
- * @description Only used for our internal API. Should not be used unless absolutely necessary and Ok'ed by code owners.
- * @deprecated
- */
- InternalAPI.prototype.getBoardModel = function getBoardModel() {};
- return InternalAPI;
- }();
- return InternalAPI;
- });
- //# sourceMappingURL=InternalAPI.js.map
|