first commit
This commit is contained in:
14
dist/core/model/Ipc.model.js
vendored
Normal file
14
dist/core/model/Ipc.model.js
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
class IpcModel {
|
||||
constructor() {
|
||||
this._saveIpcFunction = {};
|
||||
}
|
||||
get saveIpcFunction() {
|
||||
return this._saveIpcFunction;
|
||||
}
|
||||
set saveIpcFunction(value) {
|
||||
this._saveIpcFunction = value;
|
||||
}
|
||||
}
|
||||
exports.default = new IpcModel();
|
||||
Reference in New Issue
Block a user