This commit is contained in:
神仙都没用 2023-10-14 13:42:40 +08:00
parent 4a5794f60e
commit e2a99d1439
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import { Plugin } from "vite";
import type { Plugin } from "vite";
import { createSvg } from "./svg";
import { createTag } from "./tag";
import { createEps } from "./eps";

View File

@ -22,7 +22,7 @@ async function getData(temps?: Eps.Entity[]) {
// 本地文件
try {
list = JSON.parse(readFile(join(DistPath, "eps.json")) || "[]");
} catch (err) {
} catch (err: any) {
error(`[eps] ${join(DistPath, "eps.json")} 文件异常, ${err.message}`);
}
@ -87,7 +87,7 @@ function createJson() {
// 创建描述文件
async function createDescribe({ list, service }: { list: Eps.Entity[]; service: any }) {
// 获取类型
function getType({ propertyName, type }) {
function getType({ propertyName, type }: any) {
for (const map of Entity.mapping) {
if (map.custom) {
const resType = map.custom({ propertyName, type });