VisDefinitionStateAPI.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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 VisDefinitionStateAPI
  10. * @hideconstructor
  11. * @classdesc API class that is used for VisDefinition state
  12. */
  13. define([], function () {
  14. var VisDefinitionStateAPI = function () {
  15. function VisDefinitionStateAPI() {
  16. _classCallCheck(this, VisDefinitionStateAPI);
  17. }
  18. /**
  19. * @function VisDefinitionStateAPI#getError
  20. * @description get the error associated to the vis definition state.
  21. * @return {Error} The error object of the state.
  22. */
  23. VisDefinitionStateAPI.prototype.getError = function getError() {};
  24. return VisDefinitionStateAPI;
  25. }();
  26. return VisDefinitionStateAPI;
  27. });
  28. //# sourceMappingURL=VisDefinitionStateAPI.js.map