UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

79 lines (78 loc) 2.66 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 { Base, markType } from "./type"; /** * @hidden */ var AsyncDataSourcePageRequest = /** @class */ /*@__PURE__*/ (function (_super) { __extends(AsyncDataSourcePageRequest, _super); function AsyncDataSourcePageRequest(a, b) { var _this = _super.call(this) || this; _this.f = 0; _this.g = 0; _this.h = 0; _this.a = null; _this.c = false; _this.f = AsyncDataSourcePageRequest.e; AsyncDataSourcePageRequest.e++; _this.g = a; _this.h = b; return _this; } Object.defineProperty(AsyncDataSourcePageRequest.prototype, "id", { get: function () { return this.f; }, enumerable: false, configurable: true }); Object.defineProperty(AsyncDataSourcePageRequest.prototype, "index", { get: function () { return this.g; }, set: function (a) { this.g = a; }, enumerable: false, configurable: true }); Object.defineProperty(AsyncDataSourcePageRequest.prototype, "retryDelay", { get: function () { return this.h; }, set: function (a) { this.h = a; }, enumerable: false, configurable: true }); Object.defineProperty(AsyncDataSourcePageRequest.prototype, "taskHolder", { get: function () { return this.a; }, set: function (a) { this.a = a; }, enumerable: false, configurable: true }); Object.defineProperty(AsyncDataSourcePageRequest.prototype, "isDone", { get: function () { return this.c; }, set: function (a) { this.c = a; }, enumerable: false, configurable: true }); AsyncDataSourcePageRequest.$t = markType(AsyncDataSourcePageRequest, 'AsyncDataSourcePageRequest'); AsyncDataSourcePageRequest.e = 0; return AsyncDataSourcePageRequest; }(Base)); export { AsyncDataSourcePageRequest };