UNPKG

igniteui-react-core

Version:
40 lines (39 loc) 1.79 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 ToolActionButtonInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionButtonInfoDescription, _super); function ToolActionButtonInfoDescription() { var _this = _super.call(this) || this; _this.bo = null; return _this; } ToolActionButtonInfoDescription.prototype.get_type = function () { return "ToolActionButtonInfo"; }; Object.defineProperty(ToolActionButtonInfoDescription.prototype, "displayType", { get: function () { return this.bo; }, set: function (a) { this.bo = a; this.g("DisplayType"); }, enumerable: false, configurable: true }); ToolActionButtonInfoDescription.$t = markType(ToolActionButtonInfoDescription, 'ToolActionButtonInfoDescription', ToolActionInfoDescription.$); ToolActionButtonInfoDescription.__marshalByValue1 = true; ToolActionButtonInfoDescription.__marshalByValueAlias1 = "ToolActionButtonInfo"; return ToolActionButtonInfoDescription; }(ToolActionInfoDescription)); export { ToolActionButtonInfoDescription };