123456789101112131415161718192021222324252627282930313233343536 |
- "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 Cognos Products: BI Cloud (C) Copyright IBM Corp. 2019
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define([], function () {
- var Internal = function () {
- function Internal(options) {
- _classCallCheck(this, Internal);
- this.view = options.view;
- }
- Internal.prototype.destroy = function destroy() {
- this.view = null;
- };
- /**
- * Only used for our internal API. Should not be used unless absolutely necessary and Ok'ed by code owners.
- */
- Internal.prototype.getBoardModel = function getBoardModel() {
- return this.view.boardModel;
- };
- return Internal;
- }();
- return Internal;
- });
- //# sourceMappingURL=Internal.js.map
|