koatty_container
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -8,3 +8,5 @@ /** | ||
export { Autowired } from "./Autowired"; | ||
export { Value, Config } from "./Value"; | ||
export { Before, BeforeEach, After, AfterEach } from "./AOP"; | ||
export * from "./Container"; | ||
export * from "./IContainer"; |
@@ -9,8 +9,16 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Autowired = void 0; | ||
exports.AfterEach = exports.After = exports.BeforeEach = exports.Before = exports.Config = exports.Value = exports.Autowired = void 0; | ||
const tslib_1 = require("tslib"); | ||
var Autowired_1 = require("./Autowired"); | ||
Object.defineProperty(exports, "Autowired", { enumerable: true, get: function () { return Autowired_1.Autowired; } }); | ||
var Value_1 = require("./Value"); | ||
Object.defineProperty(exports, "Value", { enumerable: true, get: function () { return Value_1.Value; } }); | ||
Object.defineProperty(exports, "Config", { enumerable: true, get: function () { return Value_1.Config; } }); | ||
var AOP_1 = require("./AOP"); | ||
Object.defineProperty(exports, "Before", { enumerable: true, get: function () { return AOP_1.Before; } }); | ||
Object.defineProperty(exports, "BeforeEach", { enumerable: true, get: function () { return AOP_1.BeforeEach; } }); | ||
Object.defineProperty(exports, "After", { enumerable: true, get: function () { return AOP_1.After; } }); | ||
Object.defineProperty(exports, "AfterEach", { enumerable: true, get: function () { return AOP_1.AfterEach; } }); | ||
tslib_1.__exportStar(require("./Container"), exports); | ||
tslib_1.__exportStar(require("./IContainer"), exports); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "koatty_container", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "IOC Container for Koatty.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
75799
1553