inversify
Version:
A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.
12 lines (11 loc) • 469 B
JavaScript
define(["require", "exports"], function (require, exports) {
"use strict";
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 = {}));
});