first commit

This commit is contained in:
编码猿
2024-09-27 01:15:47 +08:00
commit 8be1fcce6b
155 changed files with 9435 additions and 0 deletions

11
json-class-interface/dist/file.js vendored Normal file
View File

@@ -0,0 +1,11 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.configFilePath = void 0;
const fs_1 = require("fs");
const store_1 = require("./store");
const configFilePath = (path) => {
store_1.config.saveTypeFilePath = path;
console.log("config.saveTypeFilePath: ", store_1.config.saveTypeFilePath);
(0, fs_1.writeFileSync)(store_1.config.saveTypeFilePath, "testetststststststst");
};
exports.configFilePath = configFilePath;