InternalAPI.js 1009 B

123456789101112131415161718192021222324252627282930313233
  1. "use strict";
  2. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  3. /**
  4. * Licensed Materials - Property of IBM
  5. * IBM Business Analytics (C) Copyright IBM Corp. 2019
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /**
  9. * @class InternalAPI
  10. * @hideconstructor
  11. * @classdesc Internal API class that is used to control a dashboard instance behaviour
  12. */
  13. define([], function () {
  14. var InternalAPI = function () {
  15. function InternalAPI() {
  16. _classCallCheck(this, InternalAPI);
  17. }
  18. /**
  19. * @description Only used for our internal API. Should not be used unless absolutely necessary and Ok'ed by code owners.
  20. * @deprecated
  21. */
  22. InternalAPI.prototype.getBoardModel = function getBoardModel() {};
  23. return InternalAPI;
  24. }();
  25. return InternalAPI;
  26. });
  27. //# sourceMappingURL=InternalAPI.js.map