@splode/obake
Version:
Check merchants for deals.
20 lines • 573 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var State = /** @class */ (function () {
function State() {
this._isRunning = false;
}
State.prototype.setIsRunning = function (running) {
this._isRunning = running;
};
Object.defineProperty(State.prototype, "isRunning", {
get: function () {
return this._isRunning;
},
enumerable: false,
configurable: true
});
return State;
}());
exports.default = State;
//# sourceMappingURL=State.js.map