UNPKG

igniteui-react-core

Version:
40 lines (39 loc) 1.81 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 { ToolActionInfoDescription } from "./ToolActionInfoDescription"; import { markType } from "./type"; /** * @hidden */ var ToolActionCheckboxInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionCheckboxInfoDescription, _super); function ToolActionCheckboxInfoDescription() { var _this = _super.call(this) || this; _this.bh = false; return _this; } ToolActionCheckboxInfoDescription.prototype.get_type = function () { return "ToolActionCheckboxInfo"; }; Object.defineProperty(ToolActionCheckboxInfoDescription.prototype, "isChecked", { get: function () { return this.bh; }, set: function (a) { this.bh = a; this.g("IsChecked"); }, enumerable: false, configurable: true }); ToolActionCheckboxInfoDescription.$t = markType(ToolActionCheckboxInfoDescription, 'ToolActionCheckboxInfoDescription', ToolActionInfoDescription.$); ToolActionCheckboxInfoDescription.__marshalByValue1 = true; ToolActionCheckboxInfoDescription.__marshalByValueAlias1 = "ToolActionCheckboxInfo"; return ToolActionCheckboxInfoDescription; }(ToolActionInfoDescription)); export { ToolActionCheckboxInfoDescription };