inversify
Version:
A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.
19 lines (18 loc) • 554 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.AsyncContainerModule = exports.ContainerModule = void 0;
const id_1 = require("../utils/id");
class ContainerModule {
constructor(registry) {
this.id = (0, id_1.id)();
this.registry = registry;
}
}
exports.ContainerModule = ContainerModule;
class AsyncContainerModule {
constructor(registry) {
this.id = (0, id_1.id)();
this.registry = registry;
}
}
exports.AsyncContainerModule = AsyncContainerModule;
;