UNPKG

igniteui-react-core

Version:
59 lines (58 loc) 2.25 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 ToolCommandArgumentDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolCommandArgumentDescription, _super); function ToolCommandArgumentDescription() { var _this = _super.call(this) || this; _this.l = null; _this.i = null; return _this; } ToolCommandArgumentDescription.prototype.get_type = function () { return "ToolCommandArgument"; }; Object.defineProperty(ToolCommandArgumentDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(ToolCommandArgumentDescription.prototype, "argumentName", { get: function () { return this.l; }, set: function (a) { this.l = a; this.g("ArgumentName"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolCommandArgumentDescription.prototype, "value", { get: function () { return this.i; }, set: function (a) { this.i = a; this.g("Value"); }, enumerable: false, configurable: true }); ToolCommandArgumentDescription.$t = markType(ToolCommandArgumentDescription, 'ToolCommandArgumentDescription', Description.$); ToolCommandArgumentDescription.__marshalByValue = true; ToolCommandArgumentDescription.__marshalByValueAlias = "ToolCommandArgument"; return ToolCommandArgumentDescription; }(Description)); export { ToolCommandArgumentDescription };