igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
55 lines (54 loc) • 2.02 kB
JavaScript
/*
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 DescriptionPathIndexer = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DescriptionPathIndexer, _super);
function DescriptionPathIndexer() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this._index = 0;
_this._isAny = false;
_this._descriptionType = null;
return _this;
}
Object.defineProperty(DescriptionPathIndexer.prototype, "index", {
get: function () {
return this._index;
},
set: function (a) {
this._index = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DescriptionPathIndexer.prototype, "isAny", {
get: function () {
return this._isAny;
},
set: function (a) {
this._isAny = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DescriptionPathIndexer.prototype, "descriptionType", {
get: function () {
return this._descriptionType;
},
set: function (a) {
this._descriptionType = a;
},
enumerable: false,
configurable: true
});
DescriptionPathIndexer.$t = markType(DescriptionPathIndexer, 'DescriptionPathIndexer');
return DescriptionPathIndexer;
}(Base));
export { DescriptionPathIndexer };