123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- "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 StateAPI
- * @hideconstructor
- * @classdesc API class that is used to control a state
- */
- define([], function () {
- var StateAPI = function () {
- function StateAPI() {
- _classCallCheck(this, StateAPI);
- }
- /**
- * @function StateAPI#setStatus
- * @description set status of the state
- * @param {StateAPI#STATUS}
- */
- StateAPI.prototype.setStatus = function setStatus() {};
- /**
- * @function StateAPI#setError
- * @description set the error associated to the state
- * @param {Error} error error object associated to the state
- */
- StateAPI.prototype.setError = function setError() {};
- /**
- * @function StateAPI#clearError
- * @description clears the error associated to the state
- */
- StateAPI.prototype.clearError = function clearError() {};
- return StateAPI;
- }();
- return StateAPI;
- });
- //# sourceMappingURL=PrivateStateAPI.js.map
|