"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(); //# sourceMappingURL=Ioc.model.js.map