1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define([], function () {
- var QueryProviderAPI = function () {
- function QueryProviderAPI() {
- _classCallCheck(this, QueryProviderAPI);
- }
-
- QueryProviderAPI.prototype.getQuerySpecList = function getQuerySpecList() {};
-
- QueryProviderAPI.prototype.getType = function getType() {};
- return QueryProviderAPI;
- }();
- return QueryProviderAPI;
- });
|