Files
Vue3Template/tsVue3Decorators/dist/model/global.method.model.js
2024-09-27 00:58:46 +08:00

21 lines
617 B
JavaScript

"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();