igniteui-webcomponents-datasources
Version:
Reference custom data providers for the Ignite UI Web Components data source.
86 lines (85 loc) • 3.04 kB
JavaScript
import { AsyncVirtualDataSourceDataProviderWorkerSettings } from "igniteui-webcomponents-core";
import { markType } from "igniteui-webcomponents-core";
export let ODataVirtualDataSourceDataProviderWorkerSettings = /*@__PURE__*/ (() => {
class ODataVirtualDataSourceDataProviderWorkerSettings extends AsyncVirtualDataSourceDataProviderWorkerSettings {
constructor() {
super(...arguments);
this._baseUri = null;
this._entitySet = null;
this._sortDescriptions = null;
this._filterExpressions = null;
this._propertiesRequested = null;
this._schemaIncludedProperties = null;
this._groupDescriptions = null;
this._summaryDescriptions = null;
}
get baseUri() {
return this._baseUri;
}
set baseUri(value) {
this._baseUri = value;
}
get entitySet() {
return this._entitySet;
}
set entitySet(value) {
this._entitySet = value;
}
get sortDescriptions() {
return this._sortDescriptions;
}
set sortDescriptions(value) {
this._sortDescriptions = value;
}
get filterExpressions() {
return this._filterExpressions;
}
set filterExpressions(value) {
this._filterExpressions = value;
}
get propertiesRequested() {
return this._propertiesRequested;
}
set propertiesRequested(value) {
this._propertiesRequested = value;
}
get schemaIncludedProperties() {
return this._schemaIncludedProperties;
}
set schemaIncludedProperties(value) {
this._schemaIncludedProperties = value;
}
get groupDescriptions() {
return this._groupDescriptions;
}
set groupDescriptions(value) {
this._groupDescriptions = value;
}
get summaryDescriptions() {
return this._summaryDescriptions;
}
set summaryDescriptions(value) {
this._summaryDescriptions = value;
}
get summaryScope() {
return this._summaryscope;
}
set summaryScope(value) {
this._summaryscope = value;
}
get enableJsonp() {
return this._enableJsonp;
}
set enableJsonp(isEnabled) {
this._enableJsonp = isEnabled;
}
get isAggregationSupported() {
return this._isAggregationSupported;
}
set isAggregationSupported(isSupported) {
this._isAggregationSupported = isSupported;
}
}
ODataVirtualDataSourceDataProviderWorkerSettings.$t = /*@__PURE__*/ markType(ODataVirtualDataSourceDataProviderWorkerSettings, 'ODataVirtualDataSourceDataProviderWorkerSettings', AsyncVirtualDataSourceDataProviderWorkerSettings.$type);
return ODataVirtualDataSourceDataProviderWorkerSettings;
})();