UNPKG

@expressots/core

Version:

Expressots - modern, fast, lightweight nodejs web framework (@core)

16 lines (15 loc) 594 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ContainerSnapshot = void 0; class ContainerSnapshot { static of(bindings, middleware, activations, deactivations, moduleActivationStore) { const snapshot = new ContainerSnapshot(); snapshot.bindings = bindings; snapshot.middleware = middleware; snapshot.deactivations = deactivations; snapshot.activations = activations; snapshot.moduleActivationStore = moduleActivationStore; return snapshot; } } exports.ContainerSnapshot = ContainerSnapshot;