igniteui-webcomponents-datasources
Version:
Reference custom data providers for the Ignite UI Web Components data source.
132 lines (131 loc) • 4.99 kB
JavaScript
import { __extends } from "tslib";
import { AsyncVirtualDataSourceDataProviderWorkerSettings } from "igniteui-webcomponents-core";
import { markType } from "igniteui-webcomponents-core";
var ODataVirtualDataSourceDataProviderWorkerSettings = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ODataVirtualDataSourceDataProviderWorkerSettings, _super);
function ODataVirtualDataSourceDataProviderWorkerSettings() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this._baseUri = null;
_this._entitySet = null;
_this._sortDescriptions = null;
_this._filterExpressions = null;
_this._propertiesRequested = null;
_this._schemaIncludedProperties = null;
_this._groupDescriptions = null;
_this._summaryDescriptions = null;
return _this;
}
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "baseUri", {
get: function () {
return this._baseUri;
},
set: function (value) {
this._baseUri = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "entitySet", {
get: function () {
return this._entitySet;
},
set: function (value) {
this._entitySet = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "sortDescriptions", {
get: function () {
return this._sortDescriptions;
},
set: function (value) {
this._sortDescriptions = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "filterExpressions", {
get: function () {
return this._filterExpressions;
},
set: function (value) {
this._filterExpressions = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "propertiesRequested", {
get: function () {
return this._propertiesRequested;
},
set: function (value) {
this._propertiesRequested = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "schemaIncludedProperties", {
get: function () {
return this._schemaIncludedProperties;
},
set: function (value) {
this._schemaIncludedProperties = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "groupDescriptions", {
get: function () {
return this._groupDescriptions;
},
set: function (value) {
this._groupDescriptions = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "summaryDescriptions", {
get: function () {
return this._summaryDescriptions;
},
set: function (value) {
this._summaryDescriptions = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "summaryScope", {
get: function () {
return this._summaryscope;
},
set: function (value) {
this._summaryscope = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "enableJsonp", {
get: function () {
return this._enableJsonp;
},
set: function (isEnabled) {
this._enableJsonp = isEnabled;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataVirtualDataSourceDataProviderWorkerSettings.prototype, "isAggregationSupported", {
get: function () {
return this._isAggregationSupported;
},
set: function (isSupported) {
this._isAggregationSupported = isSupported;
},
enumerable: false,
configurable: true
});
ODataVirtualDataSourceDataProviderWorkerSettings.$t = markType(ODataVirtualDataSourceDataProviderWorkerSettings, 'ODataVirtualDataSourceDataProviderWorkerSettings', AsyncVirtualDataSourceDataProviderWorkerSettings.$type);
return ODataVirtualDataSourceDataProviderWorkerSettings;
}(AsyncVirtualDataSourceDataProviderWorkerSettings));
export { ODataVirtualDataSourceDataProviderWorkerSettings };