UNPKG

igniteui-react-core

Version:
59 lines (58 loc) 2.13 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 ToolCommandDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolCommandDescription, _super); function ToolCommandDescription() { var _this = _super.call(this) || this; _this.l = null; _this.h = null; return _this; } ToolCommandDescription.prototype.get_type = function () { return "ToolCommand"; }; Object.defineProperty(ToolCommandDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(ToolCommandDescription.prototype, "commandId", { get: function () { return this.l; }, set: function (a) { this.l = a; this.g("CommandId"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolCommandDescription.prototype, "argumentsList", { get: function () { return this.h; }, set: function (a) { this.h = a; this.g("ArgumentsList"); }, enumerable: false, configurable: true }); ToolCommandDescription.$t = markType(ToolCommandDescription, 'ToolCommandDescription', Description.$); ToolCommandDescription.__marshalByValue = true; ToolCommandDescription.__marshalByValueAlias = "ToolCommand"; return ToolCommandDescription; }(Description)); export { ToolCommandDescription };