UNPKG

lemmy-bot

Version:

A bot API for Lemmy, the fediverse link aggregator.

35 lines (34 loc) 2.06 kB
"use strict"; var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) { if (kind === "m") throw new TypeError("Private method is not writable"); if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; }; var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) { if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); }; var _ReprocessHandler_minutesUntilReprocess; Object.defineProperty(exports, "__esModule", { value: true }); class ReprocessHandler { constructor(minutesUntilReprocess) { _ReprocessHandler_minutesUntilReprocess.set(this, void 0); __classPrivateFieldSet(this, _ReprocessHandler_minutesUntilReprocess, minutesUntilReprocess, "f"); this.reprocess = this.reprocess.bind(this); this.preventReprocess = this.preventReprocess.bind(this); this.get = this.get.bind(this); } reprocess(minutes) { __classPrivateFieldSet(this, _ReprocessHandler_minutesUntilReprocess, minutes, "f"); } preventReprocess() { __classPrivateFieldSet(this, _ReprocessHandler_minutesUntilReprocess, undefined, "f"); } get() { return __classPrivateFieldGet(this, _ReprocessHandler_minutesUntilReprocess, "f"); } } _ReprocessHandler_minutesUntilReprocess = new WeakMap(); exports.default = ReprocessHandler;