初始提交:项目迁移,前端(管理端)

This commit is contained in:
jdc
2025-11-13 09:50:47 +08:00
commit 13f78a3086
695 changed files with 89296 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import type { Eps } from "../../types";
/**
* 主入口:创建 eps 相关文件和 service
*/
export declare function createEps(): Promise<{
service: {};
serviceCode: {
content: string;
types: string[];
};
list: Eps.Entity[];
isUpdate: boolean;
} | {
service: {};
list: never[];
serviceCode?: undefined;
isUpdate?: undefined;
}>;