123456789101112131415161718192021222324252627282930313233343536 |
- "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 PredictAPI
- * @hideconstructor
- * @classdesc SmartsServiceAPI interface.
- */
- define([], function () {
- var SmartsServiceAPI = function () {
- function SmartsServiceAPI() {
- _classCallCheck(this, SmartsServiceAPI);
- }
- /**
- * @function SmartsServiceAPI#runQuery
- * @description Runs smarts query against a smart service (Predict execution, Smart annotations)
- * @public
- * @param {Object} options target and querySpec Mandatory: the query specification to be sent to explore service
- * @returns a promise
- */
- SmartsServiceAPI.prototype.runQuery = function runQuery() {};
- return SmartsServiceAPI;
- }();
- return SmartsServiceAPI;
- });
- //# sourceMappingURL=SmartsServiceAPI.js.map
|