igniteui-react-core
Version:
Ignite UI React Core.
52 lines (51 loc) • 2.1 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 ToolActionRadioInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionRadioInfoDescription, _super);
function ToolActionRadioInfoDescription() {
var _this = _super.call(this) || this;
_this.bn = false;
_this.bq = null;
return _this;
}
ToolActionRadioInfoDescription.prototype.get_type = function () {
return "ToolActionRadioInfo";
};
Object.defineProperty(ToolActionRadioInfoDescription.prototype, "isChecked", {
get: function () {
return this.bn;
},
set: function (a) {
this.bn = a;
this.g("IsChecked");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioInfoDescription.prototype, "channel", {
get: function () {
return this.bq;
},
set: function (a) {
this.bq = a;
this.g("Channel");
},
enumerable: false,
configurable: true
});
ToolActionRadioInfoDescription.$t = markType(ToolActionRadioInfoDescription, 'ToolActionRadioInfoDescription', ToolActionInfoDescription.$);
ToolActionRadioInfoDescription.__marshalByValue1 = true;
ToolActionRadioInfoDescription.__marshalByValueAlias1 = "ToolActionRadioInfo";
return ToolActionRadioInfoDescription;
}(ToolActionInfoDescription));
export { ToolActionRadioInfoDescription };