UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

63 lines (62 loc) 2.51 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 { AsyncVirtualDataSourceDataProviderWorkerSettings } from "./AsyncVirtualDataSourceDataProviderWorkerSettings"; import { markType } from "./type"; /** * @hidden */ export let GenericVirtualDataProviderWorkerSettings = /*@__PURE__*/ (() => { class GenericVirtualDataProviderWorkerSettings extends AsyncVirtualDataSourceDataProviderWorkerSettings { constructor() { super(...arguments); this._pageRequested = null; this._sortDescriptions = null; this._groupDescriptions = null; this._summaryDescriptions = null; this._filterExpressions = null; this._summaryScope = 0; } get pageRequested() { return this._pageRequested; } set pageRequested(a) { this._pageRequested = a; } get sortDescriptions() { return this._sortDescriptions; } set sortDescriptions(a) { this._sortDescriptions = a; } get groupDescriptions() { return this._groupDescriptions; } set groupDescriptions(a) { this._groupDescriptions = a; } get summaryDescriptions() { return this._summaryDescriptions; } set summaryDescriptions(a) { this._summaryDescriptions = a; } get filterExpressions() { return this._filterExpressions; } set filterExpressions(a) { this._filterExpressions = a; } get summaryScope() { return this._summaryScope; } set summaryScope(a) { this._summaryScope = a; } } GenericVirtualDataProviderWorkerSettings.$t = markType(GenericVirtualDataProviderWorkerSettings, 'GenericVirtualDataProviderWorkerSettings', AsyncVirtualDataSourceDataProviderWorkerSettings.$); return GenericVirtualDataProviderWorkerSettings; })();