igniteui-react-core
Version:
Ignite UI React Core.
52 lines (51 loc) • 2.18 kB
JavaScript
/*
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 ToolActionSeparatorInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionSeparatorInfoDescription, _super);
function ToolActionSeparatorInfoDescription() {
var _this = _super.call(this) || this;
_this.bp = 0;
_this.bn = false;
return _this;
}
ToolActionSeparatorInfoDescription.prototype.get_type = function () {
return "ToolActionSeparatorInfo";
};
Object.defineProperty(ToolActionSeparatorInfoDescription.prototype, "size", {
get: function () {
return this.bp;
},
set: function (a) {
this.bp = a;
this.g("Size");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionSeparatorInfoDescription.prototype, "isGroupHeaderSeparator", {
get: function () {
return this.bn;
},
set: function (a) {
this.bn = a;
this.g("IsGroupHeaderSeparator");
},
enumerable: false,
configurable: true
});
ToolActionSeparatorInfoDescription.$t = markType(ToolActionSeparatorInfoDescription, 'ToolActionSeparatorInfoDescription', ToolActionInfoDescription.$);
ToolActionSeparatorInfoDescription.__marshalByValue1 = true;
ToolActionSeparatorInfoDescription.__marshalByValueAlias1 = "ToolActionSeparatorInfo";
return ToolActionSeparatorInfoDescription;
}(ToolActionInfoDescription));
export { ToolActionSeparatorInfoDescription };