index.js 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. var __extends = this && this.t || function() {
  2. var extendStatics = function(n, t) {
  3. extendStatics = Object.setPrototypeOf || {
  4. __proto__: []
  5. } instanceof Array && function(n, t) {
  6. n.__proto__ = t;
  7. } || function(n, t) {
  8. for (var e in t) if (Object.prototype.hasOwnProperty.call(t, e)) n[e] = t[e];
  9. };
  10. return extendStatics(n, t);
  11. };
  12. return function(n, t) {
  13. if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null");
  14. extendStatics(n, t);
  15. function __() {
  16. this.constructor = n;
  17. }
  18. n.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __);
  19. };
  20. }();
  21. import { Container } from "../../ContainerBase";
  22. var SequentialContainer = function(n) {
  23. __extends(SequentialContainer, n);
  24. function SequentialContainer() {
  25. return n !== null && n.apply(this, arguments) || this;
  26. }
  27. return SequentialContainer;
  28. }(Container);
  29. export default SequentialContainer;