1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- "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 QueryProviderAPI
- * @hideconstructor
- * @classdesc
- */
- define([], function () {
- var QueryProviderAPI = function () {
- function QueryProviderAPI() {
- _classCallCheck(this, QueryProviderAPI);
- }
- /**
- * @function QueryProviderAPI#getQuerySpecList
- * @description Get an array of objects with query id, type and spec.
- * @public
- *
- * @return {Object[]} An array of objects with query id, type and spec.
- * @example
- * [{
- * 'id': 'layerId1',
- * 'type': 'main',
- * 'spec': {
- * 'projections': []
- * ...
- * }
- * },
- * {
- * 'id': 'layerId',
- * 'type': 'main.minmax',
- * 'spec': {
- * ...
- * }
- * }]
- */
- QueryProviderAPI.prototype.getQuerySpecList = function getQuerySpecList() {};
- /**
- * @return {String} the type of the provider
- */
- QueryProviderAPI.prototype.getType = function getType() {};
- return QueryProviderAPI;
- }();
- return QueryProviderAPI;
- });
- //# sourceMappingURL=QueryProviderAPI.js.map
|