21 lines
617 B
JavaScript
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();
|