first commit

This commit is contained in:
编码猿
2024-09-27 00:58:46 +08:00
commit 92916abf8f
156 changed files with 19331 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var InjectableModel = /** @class */ (function () {
function InjectableModel() {
this._InjectableModelContainer = [];
}
Object.defineProperty(InjectableModel.prototype, "InjectableModel", {
get: function () {
return this._InjectableModelContainer;
},
set: function (constructor) {
this._InjectableModelContainer.push(constructor);
},
enumerable: true,
configurable: true
});
return InjectableModel;
}());
exports.InjectModel = new InjectableModel();