first commit
This commit is contained in:
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