UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

83 lines (82 loc) 3.12 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var DataSourceAggregatedResultDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DataSourceAggregatedResultDescription, _super); function DataSourceAggregatedResultDescription() { var _this = _super.call(this) || this; _this.j = null; _this.k = null; _this.f = null; _this.l = null; return _this; } DataSourceAggregatedResultDescription.prototype.get_type = function () { return "DataSourceAggregatedResult"; }; Object.defineProperty(DataSourceAggregatedResultDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceAggregatedResultDescription.prototype, "itemRef", { get: function () { return this.j; }, set: function (a) { this.j = a; this.e("ItemRef"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceAggregatedResultDescription.prototype, "transactionType", { get: function () { return this.k; }, set: function (a) { this.k = a; this.e("TransactionType"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceAggregatedResultDescription.prototype, "keys", { get: function () { return this.f; }, set: function (a) { this.f = a; this.e("Keys"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceAggregatedResultDescription.prototype, "valuesRef", { get: function () { return this.l; }, set: function (a) { this.l = a; this.e("ValuesRef"); }, enumerable: false, configurable: true }); DataSourceAggregatedResultDescription.$t = markType(DataSourceAggregatedResultDescription, 'DataSourceAggregatedResultDescription', Description.$); DataSourceAggregatedResultDescription.__marshalByValue = true; DataSourceAggregatedResultDescription.__marshalByValueAlias = "DataSourceAggregatedResult"; return DataSourceAggregatedResultDescription; }(Description)); export { DataSourceAggregatedResultDescription };