igniteui-react-core
Version:
Ignite UI React Core.
44 lines (43 loc) • 1.62 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 TestRandomness = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TestRandomness, _super);
function TestRandomness() {
var _this = _super.call(this) || this;
_this._testRandomnessSource = null;
return _this;
}
Object.defineProperty(TestRandomness, "instance", {
get: function () {
if (TestRandomness.b == null) {
TestRandomness.b = new TestRandomness();
}
return TestRandomness.b;
},
enumerable: false,
configurable: true
});
Object.defineProperty(TestRandomness.prototype, "testRandomnessSource", {
get: function () {
return this._testRandomnessSource;
},
set: function (a) {
this._testRandomnessSource = a;
},
enumerable: false,
configurable: true
});
TestRandomness.$t = markType(TestRandomness, 'TestRandomness');
TestRandomness.b = null;
return TestRandomness;
}(Base));
export { TestRandomness };