UNPKG

igniteui-react-core

Version:
57 lines (56 loc) 2.16 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 GridSizeChangedEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GridSizeChangedEventArgsDescription, _super); function GridSizeChangedEventArgsDescription() { var _this = _super.call(this) || this; _this.i = 0; _this.h = 0; return _this; } GridSizeChangedEventArgsDescription.prototype.get_type = function () { return "GridSizeChangedEventArgs"; }; Object.defineProperty(GridSizeChangedEventArgsDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(GridSizeChangedEventArgsDescription.prototype, "width", { get: function () { return this.i; }, set: function (a) { this.i = a; this.g("Width"); }, enumerable: false, configurable: true }); Object.defineProperty(GridSizeChangedEventArgsDescription.prototype, "height", { get: function () { return this.h; }, set: function (a) { this.h = a; this.g("Height"); }, enumerable: false, configurable: true }); GridSizeChangedEventArgsDescription.$t = markType(GridSizeChangedEventArgsDescription, 'GridSizeChangedEventArgsDescription', Description.$); return GridSizeChangedEventArgsDescription; }(Description)); export { GridSizeChangedEventArgsDescription };