inversify
Version:
A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.
10 lines (9 loc) • 366 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.FactoryType = void 0;
var FactoryType;
(function (FactoryType) {
FactoryType["DynamicValue"] = "toDynamicValue";
FactoryType["Factory"] = "toFactory";
FactoryType["Provider"] = "toProvider";
})(FactoryType = exports.FactoryType || (exports.FactoryType = {}));
;