21 lines
587 B
JavaScript
21 lines
587 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.mixinModel = void 0;
|
|
var MixinModel = /** @class */ (function () {
|
|
function MixinModel() {
|
|
this._MixinContainer = [];
|
|
}
|
|
Object.defineProperty(MixinModel.prototype, "MixinContainer", {
|
|
get: function () {
|
|
return this._MixinContainer;
|
|
},
|
|
set: function (Mixin) {
|
|
this._MixinContainer.push(Mixin);
|
|
},
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
return MixinModel;
|
|
}());
|
|
exports.mixinModel = new MixinModel();
|