12345678910111213141516171819202122232425262728293031323334 |
- "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 VisDefinitionStateAPI
- * @hideconstructor
- * @classdesc API class that is used for VisDefinition state
- */
- define([], function () {
- var VisDefinitionStateAPI = function () {
- function VisDefinitionStateAPI() {
- _classCallCheck(this, VisDefinitionStateAPI);
- }
- /**
- * @function VisDefinitionStateAPI#getError
- * @description get the error associated to the vis definition state.
- * @return {Error} The error object of the state.
- */
- VisDefinitionStateAPI.prototype.getError = function getError() {};
- return VisDefinitionStateAPI;
- }();
- return VisDefinitionStateAPI;
- });
- //# sourceMappingURL=VisDefinitionStateAPI.js.map
|