first commit

This commit is contained in:
编码猿
2024-09-27 01:25:59 +08:00
commit 546fffb620
78 changed files with 30293 additions and 0 deletions

26
dist/core/model/Ioc.model.js vendored Normal file
View File

@@ -0,0 +1,26 @@
"use strict";
var __spreadArrays = (this && this.__spreadArrays) || function () {
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
for (var r = Array(s), k = 0, i = 0; i < il; i++)
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
r[k] = a[j];
return r;
};
Object.defineProperty(exports, "__esModule", { value: true });
var IocModel = /** @class */ (function () {
function IocModel() {
this._classPool = [];
}
Object.defineProperty(IocModel.prototype, "classPool", {
get: function () {
return this._classPool;
},
set: function (value) {
this._classPool = __spreadArrays(value, this._classPool);
},
enumerable: false,
configurable: true
});
return IocModel;
}());
exports.default = new IocModel();