first commit
This commit is contained in:
19
tsVue3Decorators/dist/model/injectable.model.js
vendored
Normal file
19
tsVue3Decorators/dist/model/injectable.model.js
vendored
Normal 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();
|
||||
Reference in New Issue
Block a user