UNPKG

igniteui-react-core

Version:
71 lines (70 loc) 2.68 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 WebGridRowDragGhostContextDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebGridRowDragGhostContextDescription, _super); function WebGridRowDragGhostContextDescription() { var _this = _super.call(this) || this; _this.l = null; _this.k = null; _this.h = null; return _this; } WebGridRowDragGhostContextDescription.prototype.get_type = function () { return "WebGridRowDragGhostContext"; }; Object.defineProperty(WebGridRowDragGhostContextDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridRowDragGhostContextDescription.prototype, "implicit", { get: function () { return this.l; }, set: function (a) { this.l = a; this.g("Implicit"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridRowDragGhostContextDescription.prototype, "data", { get: function () { return this.k; }, set: function (a) { this.k = a; this.g("Data"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridRowDragGhostContextDescription.prototype, "grid", { get: function () { return this.h; }, set: function (a) { this.h = a; this.g("Grid"); }, enumerable: false, configurable: true }); WebGridRowDragGhostContextDescription.$t = markType(WebGridRowDragGhostContextDescription, 'WebGridRowDragGhostContextDescription', Description.$); WebGridRowDragGhostContextDescription.__marshalByValue = true; WebGridRowDragGhostContextDescription.__marshalByValueAlias = "GridRowDragGhostContext"; return WebGridRowDragGhostContextDescription; }(Description)); export { WebGridRowDragGhostContextDescription };