ts-bakery
Version:
Baked dependency injection for Typescript.
11 lines • 487 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var InjectionType;
(function (InjectionType) {
InjectionType[InjectionType["None"] = 0] = "None";
InjectionType[InjectionType["Constructor"] = 1] = "Constructor";
InjectionType[InjectionType["Method"] = 2] = "Method";
InjectionType[InjectionType["Property"] = 3] = "Property";
})(InjectionType || (InjectionType = {}));
exports.default = InjectionType;
//# sourceMappingURL=InjectionType.js.map