12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- "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 expandCollapseAPI
- * @hideconstructor
- */
- define([], function () {
- return function () {
- function ExpandCollapseAPI() {
- _classCallCheck(this, ExpandCollapseAPI);
- }
- /**
- * @description adds detail to a hierarchy dataitem model by including passed in child
- * @function expandCollapseAPI#expand
- * @public
- *
- * @param {String} dataItemId unique id representing the dataitem
- * @param {String} parentUseValue value representing current parent
- * @param {String} currentUseValue value representing child
- *
- * @return {Promise} resolves when model updated
- */
- ExpandCollapseAPI.prototype.expand = function expand() /* dataItemId, parentUseValue, currentUseValue */{};
- /**
- * @description removes detail from a hierarchy dataitem model by removing passed in child
- * @function expandCollapseAPI#collapse
- * @public
- *
- * @param {String} dataItemId unique id representing the dataitem
- * @param {String} parentUseValue value representing current parent
- * @param {String} currentUseValue value representing child
- *
- * @return {Promise} resolves when model updated
- */
- ExpandCollapseAPI.prototype.collapse = function collapse() /* dataItemId, parentUseValue, currentUseValue */{};
- return ExpandCollapseAPI;
- }();
- });
- //# sourceMappingURL=ExpandCollapseAPI.js.map
|