UNPKG

igniteui-react-core

Version:
50 lines (49 loc) 1.92 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 { WebBaseSearchInfoDescription } from "./WebBaseSearchInfoDescription"; import { markType } from "./type"; /** * @hidden */ var WebSearchInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebSearchInfoDescription, _super); function WebSearchInfoDescription() { var _this = _super.call(this) || this; _this.u = null; _this.s = 0; return _this; } WebSearchInfoDescription.prototype.get_type = function () { return "WebSearchInfo"; }; Object.defineProperty(WebSearchInfoDescription.prototype, "matchInfoCacheRef", { get: function () { return this.u; }, set: function (a) { this.u = a; this.g("MatchInfoCacheRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebSearchInfoDescription.prototype, "activeMatchIndex", { get: function () { return this.s; }, set: function (a) { this.s = a; this.g("ActiveMatchIndex"); }, enumerable: false, configurable: true }); WebSearchInfoDescription.$t = markType(WebSearchInfoDescription, 'WebSearchInfoDescription', WebBaseSearchInfoDescription.$); return WebSearchInfoDescription; }(WebBaseSearchInfoDescription)); export { WebSearchInfoDescription };