igniteui-react-core
Version:
Ignite UI React Core.
49 lines (48 loc) • 1.75 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 { Base, markType } from "./type";
/**
* @hidden
*/
var VersionQueueActionTimeout = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(VersionQueueActionTimeout, _super);
function VersionQueueActionTimeout(a, b, c) {
var _this = _super.call(this) || this;
_this.d = 0;
_this.a = null;
_this.c = 0;
_this.a = a;
_this.d = b;
_this.c = c;
return _this;
}
Object.defineProperty(VersionQueueActionTimeout.prototype, "f", {
get: function () {
return this.d;
},
enumerable: false,
configurable: true
});
Object.defineProperty(VersionQueueActionTimeout.prototype, "b", {
get: function () {
return this.a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(VersionQueueActionTimeout.prototype, "e", {
get: function () {
return this.c;
},
enumerable: false,
configurable: true
});
VersionQueueActionTimeout.$t = markType(VersionQueueActionTimeout, 'VersionQueueActionTimeout');
return VersionQueueActionTimeout;
}(Base));
export { VersionQueueActionTimeout };