first commit
This commit is contained in:
1
tsVue3Decorators/dist/model/.pydio
vendored
Normal file
1
tsVue3Decorators/dist/model/.pydio
vendored
Normal file
@@ -0,0 +1 @@
|
||||
67991ae4-3d3c-4efe-ae47-832c0548118d
|
||||
29
tsVue3Decorators/dist/model/ajax.model.js
vendored
Normal file
29
tsVue3Decorators/dist/model/ajax.model.js
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ajaxModel = void 0;
|
||||
var AjaxModel = /** @class */ (function () {
|
||||
function AjaxModel() {
|
||||
}
|
||||
Object.defineProperty(AjaxModel.prototype, "urlModelContainer", {
|
||||
get: function () {
|
||||
return this._urlModelContainer;
|
||||
},
|
||||
set: function (AjaxUrl) {
|
||||
this._urlModelContainer = AjaxUrl;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
Object.defineProperty(AjaxModel.prototype, "AjaxModelContainer", {
|
||||
get: function () {
|
||||
return this._AjaxModelContainer;
|
||||
},
|
||||
set: function (AjaxObjecy) {
|
||||
this._AjaxModelContainer = AjaxObjecy;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
return AjaxModel;
|
||||
}());
|
||||
exports.ajaxModel = new AjaxModel();
|
||||
20
tsVue3Decorators/dist/model/directive.model.js
vendored
Normal file
20
tsVue3Decorators/dist/model/directive.model.js
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.directiveModel = void 0;
|
||||
var DirectiveModel = /** @class */ (function () {
|
||||
function DirectiveModel() {
|
||||
this._DirectiveContainer = [];
|
||||
}
|
||||
Object.defineProperty(DirectiveModel.prototype, "DirectiveContainer", {
|
||||
get: function () {
|
||||
return this._DirectiveContainer;
|
||||
},
|
||||
set: function (Directive) {
|
||||
this._DirectiveContainer.push(Directive);
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
return DirectiveModel;
|
||||
}());
|
||||
exports.directiveModel = new DirectiveModel();
|
||||
20
tsVue3Decorators/dist/model/global.method.model.js
vendored
Normal file
20
tsVue3Decorators/dist/model/global.method.model.js
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.globalMethodModel = void 0;
|
||||
var GlobalMethod = /** @class */ (function () {
|
||||
function GlobalMethod() {
|
||||
this._GlobalMethod = [];
|
||||
}
|
||||
Object.defineProperty(GlobalMethod.prototype, "GlobalMethod", {
|
||||
get: function () {
|
||||
return this._GlobalMethod;
|
||||
},
|
||||
set: function (globalMethod) {
|
||||
this._GlobalMethod.push(globalMethod);
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
return GlobalMethod;
|
||||
}());
|
||||
exports.globalMethodModel = new GlobalMethod();
|
||||
19
tsVue3Decorators/dist/model/injectable.model.js
vendored
Normal file
19
tsVue3Decorators/dist/model/injectable.model.js
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var InjectableModel = /** @class */ (function () {
|
||||
function InjectableModel() {
|
||||
this._InjectableModelContainer = [];
|
||||
}
|
||||
Object.defineProperty(InjectableModel.prototype, "InjectableModel", {
|
||||
get: function () {
|
||||
return this._InjectableModelContainer;
|
||||
},
|
||||
set: function (constructor) {
|
||||
this._InjectableModelContainer.push(constructor);
|
||||
},
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
});
|
||||
return InjectableModel;
|
||||
}());
|
||||
exports.InjectModel = new InjectableModel();
|
||||
20
tsVue3Decorators/dist/model/mixin.model.js
vendored
Normal file
20
tsVue3Decorators/dist/model/mixin.model.js
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"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();
|
||||
19
tsVue3Decorators/dist/model/startboot.model.js
vendored
Normal file
19
tsVue3Decorators/dist/model/startboot.model.js
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var StartbootModel = /** @class */ (function () {
|
||||
function StartbootModel() {
|
||||
this._StartbootModelContainer = [];
|
||||
}
|
||||
Object.defineProperty(StartbootModel.prototype, "StartbootModelContainer", {
|
||||
get: function () {
|
||||
return this._StartbootModelContainer;
|
||||
},
|
||||
set: function (constructor) {
|
||||
this._StartbootModelContainer.push(constructor);
|
||||
},
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
});
|
||||
return StartbootModel;
|
||||
}());
|
||||
exports.ajaxModel = new StartbootModel();
|
||||
Reference in New Issue
Block a user