UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

89 lines (88 loc) 3.63 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { __extends } from "tslib"; import { AsyncVirtualDataSourceDataProviderWorkerSettings } from "./AsyncVirtualDataSourceDataProviderWorkerSettings"; import { markType } from "./type"; /** * @hidden */ var GenericVirtualDataProviderWorkerSettings = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GenericVirtualDataProviderWorkerSettings, _super); function GenericVirtualDataProviderWorkerSettings() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._pageRequested = null; _this._sortDescriptions = null; _this._groupDescriptions = null; _this._summaryDescriptions = null; _this._filterExpressions = null; _this._summaryScope = 0; return _this; } Object.defineProperty(GenericVirtualDataProviderWorkerSettings.prototype, "pageRequested", { get: function () { return this._pageRequested; }, set: function (a) { this._pageRequested = a; }, enumerable: false, configurable: true }); Object.defineProperty(GenericVirtualDataProviderWorkerSettings.prototype, "sortDescriptions", { get: function () { return this._sortDescriptions; }, set: function (a) { this._sortDescriptions = a; }, enumerable: false, configurable: true }); Object.defineProperty(GenericVirtualDataProviderWorkerSettings.prototype, "groupDescriptions", { get: function () { return this._groupDescriptions; }, set: function (a) { this._groupDescriptions = a; }, enumerable: false, configurable: true }); Object.defineProperty(GenericVirtualDataProviderWorkerSettings.prototype, "summaryDescriptions", { get: function () { return this._summaryDescriptions; }, set: function (a) { this._summaryDescriptions = a; }, enumerable: false, configurable: true }); Object.defineProperty(GenericVirtualDataProviderWorkerSettings.prototype, "filterExpressions", { get: function () { return this._filterExpressions; }, set: function (a) { this._filterExpressions = a; }, enumerable: false, configurable: true }); Object.defineProperty(GenericVirtualDataProviderWorkerSettings.prototype, "summaryScope", { get: function () { return this._summaryScope; }, set: function (a) { this._summaryScope = a; }, enumerable: false, configurable: true }); GenericVirtualDataProviderWorkerSettings.$t = markType(GenericVirtualDataProviderWorkerSettings, 'GenericVirtualDataProviderWorkerSettings', AsyncVirtualDataSourceDataProviderWorkerSettings.$); return GenericVirtualDataProviderWorkerSettings; }(AsyncVirtualDataSourceDataProviderWorkerSettings)); export { GenericVirtualDataProviderWorkerSettings };