first commit
This commit is contained in:
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();
|
||||
Reference in New Issue
Block a user