igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
37 lines (36 loc) • 1.49 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 { ToolActionInfo } from "./ToolActionInfo";
import { markType } from "./type";
/**
* @hidden
*/
var ToolActionButtonInfo = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionButtonInfo, _super);
function ToolActionButtonInfo() {
var _this = _super.call(this) || this;
_this._displayType = 0;
return _this;
}
ToolActionButtonInfo.prototype.get_d = function () {
return 9;
};
Object.defineProperty(ToolActionButtonInfo.prototype, "displayType", {
get: function () {
return this._displayType;
},
set: function (a) {
this._displayType = a;
},
enumerable: false,
configurable: true
});
ToolActionButtonInfo.$t = markType(ToolActionButtonInfo, 'ToolActionButtonInfo', ToolActionInfo.$);
return ToolActionButtonInfo;
}(ToolActionInfo));
export { ToolActionButtonInfo };