first commit

This commit is contained in:
编码猿
2024-09-27 01:25:59 +08:00
commit 546fffb620
78 changed files with 30293 additions and 0 deletions

28
dist/core/model/OptionParams.model.js vendored Normal file
View 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();