first commit
This commit is contained in:
1
dist/core/model/.pydio
vendored
Normal file
1
dist/core/model/.pydio
vendored
Normal file
@@ -0,0 +1 @@
|
||||
47c4d976-d8f6-4ae2-8240-a45a7c685ece
|
||||
26
dist/core/model/Ioc.model.js
vendored
Normal file
26
dist/core/model/Ioc.model.js
vendored
Normal 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();
|
||||
28
dist/core/model/OptionParams.model.js
vendored
Normal file
28
dist/core/model/OptionParams.model.js
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var OptionParamsModel = /** @class */ (function () {
|
||||
function OptionParamsModel() {
|
||||
}
|
||||
Object.defineProperty(OptionParamsModel.prototype, "VideoDom", {
|
||||
get: function () {
|
||||
return this._VideoDom;
|
||||
},
|
||||
set: function (value) {
|
||||
this._VideoDom = value;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
Object.defineProperty(OptionParamsModel.prototype, "OptionParams", {
|
||||
get: function () {
|
||||
return this._OptionParams;
|
||||
},
|
||||
set: function (value) {
|
||||
this._OptionParams = value;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
return OptionParamsModel;
|
||||
}());
|
||||
exports.default = new OptionParamsModel();
|
||||
Reference in New Issue
Block a user