UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

59 lines (58 loc) 2.57 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 WebActiveStepChangingEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebActiveStepChangingEventArgsDetailDescription, _super); function WebActiveStepChangingEventArgsDetailDescription() { var _this = _super.call(this) || this; _this.j = 0; _this.i = 0; return _this; } WebActiveStepChangingEventArgsDetailDescription.prototype.get_type = function () { return "WebActiveStepChangingEventArgsDetail"; }; Object.defineProperty(WebActiveStepChangingEventArgsDetailDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebActiveStepChangingEventArgsDetailDescription.prototype, "oldIndex", { get: function () { return this.j; }, set: function (a) { this.j = a; this.g("OldIndex"); }, enumerable: false, configurable: true }); Object.defineProperty(WebActiveStepChangingEventArgsDetailDescription.prototype, "newIndex", { get: function () { return this.i; }, set: function (a) { this.i = a; this.g("NewIndex"); }, enumerable: false, configurable: true }); WebActiveStepChangingEventArgsDetailDescription.$t = markType(WebActiveStepChangingEventArgsDetailDescription, 'WebActiveStepChangingEventArgsDetailDescription', Description.$); WebActiveStepChangingEventArgsDetailDescription.__marshalByValue = true; WebActiveStepChangingEventArgsDetailDescription.__marshalByValueAlias = "ActiveStepChangingEventArgsDetail"; return WebActiveStepChangingEventArgsDetailDescription; }(Description)); export { WebActiveStepChangingEventArgsDetailDescription };