blob: 36841f8faad50c40673b8c8b14d2ac863b507557 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
var ContainerSnapshot = (function () {
function ContainerSnapshot() {
}
ContainerSnapshot.of = function (bindings, middleware) {
var snapshot = new ContainerSnapshot();
snapshot.bindings = bindings;
snapshot.middleware = middleware;
return snapshot;
};
return ContainerSnapshot;
}());
export { ContainerSnapshot };
|