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