Front end of the Slack clone application.

QueueScheduler.js 672B

123456789101112131415161718
  1. /** PURE_IMPORTS_START ._AsyncScheduler PURE_IMPORTS_END */
  2. var __extends = (this && this.__extends) || function (d, b) {
  3. for (var p in b)
  4. if (b.hasOwnProperty(p))
  5. d[p] = b[p];
  6. function __() { this.constructor = d; }
  7. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  8. };
  9. import { AsyncScheduler } from './AsyncScheduler';
  10. export var QueueScheduler = /*@__PURE__*/ (/*@__PURE__*/ function (_super) {
  11. __extends(QueueScheduler, _super);
  12. function QueueScheduler() {
  13. _super.apply(this, arguments);
  14. }
  15. return QueueScheduler;
  16. }(AsyncScheduler));
  17. //# sourceMappingURL=QueueScheduler.js.map