12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- "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 QueryModifierAPI
- * @hideconstructor
- * @classdesc
- */
- define([], function () {
- var QueryModifierAPI = function () {
- function QueryModifierAPI() {
- _classCallCheck(this, QueryModifierAPI);
- }
- /**
- * @function QueryModifierAPI#modifyQuerySpecList
- * @description modify the given query spec list
- * @public
- * @param querySpecList query spec list returned from queryProvider
- * @return {Object[]} modified query spec list
- */
- QueryModifierAPI.prototype.modifyQuerySpecList = function modifyQuerySpecList() {};
- /**
- * @return {String} the type of the modifier
- */
- QueryModifierAPI.prototype.getType = function getType() {};
- return QueryModifierAPI;
- }();
- return QueryModifierAPI;
- });
- //# sourceMappingURL=QueryModifierAPI.js.map
|