UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

83 lines (82 loc) 3.11 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.p = null; _this.s = null; _this.k = 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, "item", { get: function () { return this.p; }, set: function (a) { this.p = a; this.j("Item"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceAggregatedResultDescription.prototype, "transactionType", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("TransactionType"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceAggregatedResultDescription.prototype, "keys", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("Keys"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceAggregatedResultDescription.prototype, "values", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("Values"); }, enumerable: false, configurable: true }); DataSourceAggregatedResultDescription.$t = markType(DataSourceAggregatedResultDescription, 'DataSourceAggregatedResultDescription', Description.$); DataSourceAggregatedResultDescription.__marshalByValue = true; DataSourceAggregatedResultDescription.__marshalByValueAlias = "DataSourceAggregatedResult"; return DataSourceAggregatedResultDescription; }(Description)); export { DataSourceAggregatedResultDescription };